Swagger API documentation with Bearer Token authentication
- Get webpage details
API Documentation (1.0)
Auth
Auth endpoints handle user authentication and session management. They support login (email/password), registration, password reset (request and reset), email verification (verify and resend), logout, company selection, and user profile retrieval (/me). Authentication uses Bearer tokens and integrates with the multi-tenant company system, allowing users to access multiple companies. The auth system manages user sessions, email verification tokens, password reset tokens, and company access. Auth endpoints temporarily disable scope violation tracking during authentication operations to allow unauthenticated access to login/register endpoints.
Feeds
Feed endpoints serve XML/RSS feeds for job boards and external integrations. Feeds enable syndication of Records (typically vacancies) to job aggregators and external systems. Feeds are generated from XML files stored on the server and can be accessed publicly or with authentication. The feed system enables companies to publish their job listings to external job boards, aggregators, and recruitment platforms, expanding the reach of their job postings and enabling automated job distribution.
Sync
Sync configurations define automated data synchronization mappings between CaraerObjects. A Sync specifies how property values from source Records should be mapped to target Records, enabling automated data flow between different object types. Syncs use Mappings that define source and target properties, allowing data to be copied, transformed, or synchronized when source Records are created or updated. Syncs are used for data integration, automation workflows, and keeping related data in sync across the platform. They enable scenarios like automatically creating a Company Record when a User Record is created, or syncing Candidate data to an external system. Syncs support complex mapping rules and can trigger on various Record events.
Webhooks
Webhooks are event-driven HTTP callbacks that notify external systems when Records are created, updated, deleted, archived, restored, or when specific events occur (e.g., FormSubmissionEvent, PropertyValueChanged, RelationCreated). Webhooks support filtering to only trigger on Records matching specific criteria, retry logic with configurable backoff, relation inclusion for sending related Record data, and multiple payload formats (LEGACY, structured). Webhooks enable integrations with external systems, automation workflows, and real-time data synchronization. They can be associated with Apps for third-party integrations and support secret-based authentication. Webhooks are essential for building event-driven architectures and connecting Caraer with external tools and services.
Relations
Relations define typed connections between CaraerObjects, enabling graph-like data modeling. A Relation specifies how Records of one Object can connect to Records of another Object (e.g., "Candidate applies to Vacancy", "Company has Employees"). Relations create directed or bidirectional relationships between Records, allowing navigation and querying of related data. Relations support cardinality, directionality, and can be used in filtering, sorting, and querying Records. They enable complex data structures where Records reference each other, creating a graph database model on top of the object-oriented schema. Relations are essential for modeling real-world relationships between entities and enable powerful querying capabilities across connected Records.
Forms
Forms are dynamic data collection interfaces associated with CaraerObjects. They use a grid-based layout system with FormItems (GridItems) arranged in rows and columns that can render various field types based on Property definitions. Forms support multi-step wizards, lead scoring configurations, styling options (standard, underline, plain), and form submissions that create Records. Forms enable public-facing data collection (e.g., job applications, contact forms, candidate registrations) and can be embedded in Webpages. Forms validate input against Property validation rules and can include nested forms (inner forms) for complex data structures. Form submissions trigger FormSubmissionEvents and can create Relations between Records. Forms are essential for converting external user input into structured Records in the platform.
File Management
File endpoints manage file uploads and downloads using S3-compatible storage. Files are used for attachments, images, documents, and media in Records and Webpages. Files support property format constraints (when used with file-type Properties) and access control through scopes. The file system provides pre-signed URLs for secure, time-limited access to files, supports bulk uploads, and can list files associated with specific Records. Files are stored with unique keys and can be deleted when no longer needed. The file system enables rich content management, allowing Records and Webpages to include images, documents, and other media assets.
Users
Users represent authenticated individuals in the system. Users belong to one or more Companies and can switch between them. Users can be members of Teams, have roles (SUPER_ADMIN, DEVELOPER, etc.) and scopes that determine their permissions. Users can have associated Records (if the User trait is enabled on an object), enabling user profiles and authentication. Each User has access configurations (HAS_ACCESS_TO) per company that define scopes, filters, and permissions. Users can request additional permissions, reset their permissions to match their team's permissions, and manage their own profile data. The User system enables authentication, authorization, and user management across the multi-tenant platform.
Filter
SavedFilters are reusable filter configurations that users can save and share. They encapsulate complex filter criteria for Records, enabling quick access to filtered data views without re-entering filter conditions. SavedFilters improve UX by allowing users to bookmark common queries (e.g., "Active Candidates", "Open Vacancies", "My Applications") and share them with team members. Filters can be soft-deleted and restored, and they support the same filter capabilities as Views but are stored separately for quick access. SavedFilters enable consistent data access patterns across teams and reduce the time needed to access frequently-used filtered views.
Views
Views are saved configurations for displaying Records that define filters, sorting, visible properties (show), grouping, calculations, row heights, and display traits (table, flow). Views enable users to create custom perspectives on data (e.g., "My Active Candidates", "High Priority Vacancies", "Recent Applications"). Each View belongs to a CaraerObject and specifies how Records of that Object should be displayed. Views can be shared with other users, set as default views, and include query strings for search functionality. Views support different traits like Table (tabular display), Flow (kanban-style workflow), and can include calculations for aggregated data. Views improve UX by allowing users to bookmark common queries and share them with team members, ensuring consistent data presentation across the platform.
Partner
Partner endpoints manage partner relationships and integrations. Partners may have special access, integrations, or white-label configurations. Partner endpoints enable reseller functionality, allowing partners to create companies, copy databases, and manage their partner relationships. Partners can have reseller relationships with companies, enabling multi-level partner structures. The partner system supports database copying for white-label deployments and partner-specific company management.
Teams
Teams are user groups within a Company that enable role-based access control and collaboration. Teams can be assigned to Records, enabling team-based workflows and permissions. Teams help organize users and manage access to data and features. Team members inherit team permissions and scopes, allowing administrators to manage access at the team level rather than individually. Teams support member management (add/remove members), permission reset (applying team permissions to members), and can be used in filtering and access control. Teams enable collaborative workflows where groups of users work together on Records, with shared permissions and access patterns.
Records
Records are actual data instances belonging to a CaraerObject. They contain property values that conform to the object's schema defined by Properties. Records support dynamic relationships via Relations, enabling graph-like data modeling where Records can reference and navigate to related Records. Records can be filtered, sorted, paginated, and displayed in various views (table, flow, page, preview). They support morphing (association with multiple objects), soft deletion with restore capability, and property parsing for formatted display. Records are the core data entities that users create, update, and manage. Each Record has a UUID, belongs to a primary Object, can have morph objects (making it visible in multiple object contexts), and maintains createdAt/updatedAt timestamps. Records enable the platform's dynamic, content-driven data management.
Traits
Traits are behavioral features that can be added to CaraerObjects to extend their functionality without modifying the core schema. Common traits include Flow (kanban-style workflow management), Table (tabular data display with sorting and filtering), Page (enables Records to have public-facing Webpages), and User (enables user authentication and user profile Records). Traits are composable - an Object can have multiple traits enabled simultaneously. Traits extend object functionality by adding specific behaviors, UI components, and capabilities. For example, the Flow trait adds workflow state management, the Table trait adds list view capabilities, and the Page trait enables CMS functionality. Traits enable flexible feature composition where objects can be customized with different capabilities based on business needs.
ConfigController
Config endpoints provide frontend configuration including branding, feature flags, and platform settings. Configuration is company-specific and enables customization of the platform UI and behavior. The config endpoint returns settings that the frontend needs to render the application correctly, including company branding, available features, and platform-specific configurations. Configuration values are determined at runtime based on the authenticated user's selected company and their access permissions.
Developer
Dev endpoints provide developer utilities for testing, debugging, and development. These endpoints may include test data generation, error simulation, database query execution, progress tracking via Server-Sent Events (SSE), and development tools. Dev endpoints are typically restricted to users with DEVELOPER role and are intended for development and testing purposes only. They enable developers to test functionality, debug issues, and perform administrative tasks during development.
Webpages
Webpages are CMS pages associated with Records that enable public-facing content. They support dynamic content layouts using PageContent structures, preview and production environments, scheduled publishing (publishAt/unpublishAt), SEO metadata (title, excerpt, slug, image), custom CSS and JavaScript, and sidebar previews. Webpages are used to create career sites, landing pages, job detail pages, and other public-facing content. They integrate with Forms for data collection and Previews for displaying related Records. Webpages can be published/unpublished, support environment-specific content (preview vs production), and maintain publication timestamps. The Webpage system enables dynamic, data-driven public websites where content is managed through Records and automatically rendered as HTML pages.
- Mock serverhttps://developer.caraer.com/_mock/apis/api/v2/webpages/{uuid}
- Productionhttps://v2.api.caraer.com/api/v2/webpages/{uuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.caraer.com/_mock/apis/api/v2/webpages/{uuid}?smartened=false&environment=preview' \
-H 'Authorization: Bearer <YOUR_Opaque_HERE>'Webpage retrieved successfully
Short summary or excerpt displayed for the webpage.
URL or identifier of the image associated with the webpage.
The Object object associated with the webpage, representing application data.
Map of additional metadata and attributes for the webpage.
Timestamp representing when the webpage was published
Timestamp representing when the webpage was unpublished
Scheduled timestamp for when the webpage will be published
Scheduled timestamp for when the webpage will be unpublished
{ "environment": "string", "uuid": "string", "title": "Homepage", "excerpt": "This is a summary of the webpage.", "slug": "homepage", "image": "https://example.com/image.jpg", "customCss": "string", "customJsHead": "string", "customJsBody": "string", "content": { "uuid": "string", "name": "string", "label": "string", "createdAt": 0, "createdBy": { … }, "updatedAt": 0, "updatedBy": { … }, "deletedAt": 0, "deletedBy": { … }, "index": 0, "category": "string", "parentUuid": "string", "type": "string", "display": "string", "text": "string", "styling": { … }, "settings": { … }, "children": [ … ] }, "sidebar": { "description": "Preview description example", "object": { … }, "recordUuid": "abcdef12-3456-7890-abcd-ef1234567890", "primary": true, "previewType": "detail", "grid": [ … ], "profileImage": { … }, "profileImagePosition": "top", "profileImageStyling": { … }, "firstInitialProperty": { … }, "secondInitialProperty": { … }, "whatsAppProperty": { … }, "phoneProperty": { … }, "emailProperty": { … }, "profileImageValue": "string", "firstInitialPropertyValue": "string", "secondInitialPropertyValue": "string", "whatsAppPropertyValue": "string", "phonePropertyValue": "string", "emailPropertyValue": "string", "customCss": "string", "url": "string", "styling": { … }, "uuid": "string", "name": "string", "label": "string", "createdAt": 0, "createdBy": { … }, "updatedAt": 0, "updatedBy": { … }, "deletedAt": 0, "deletedBy": { … }, "index": 0 }, "sidebarRelation": { "uuid": "string", "name": "string", "label": "string", "createdAt": 0, "createdBy": { … }, "updatedAt": 0, "updatedBy": { … }, "deletedAt": 0, "deletedBy": { … }, "index": 0, "description": "string", "objects": [ … ] }, "sidebarObject": { "uuid": "string", "name": "string", "label": "string", "createdAt": 0, "createdBy": { … }, "updatedAt": 0, "updatedBy": { … }, "deletedAt": 0, "deletedBy": { … }, "index": 0, "plural": "string", "description": "string", "groups": [ … ], "icon": "string", "showInMenu": true, "defaultTrait": "string", "traits": [ … ], "views": [ … ], "properties": [ … ], "relations": [ … ], "suites": [ … ] }, "record": { "name": "string", "label": "string", "createdAt": 0, "updatedAt": 0, "deletedAt": 0, "createdByUuid": "string", "updatedByUuid": "string", "deletedByUuid": "string", "index": 0, "complete": true, "deleted": true, "uuid": "string", "objects": { … }, "properties": [ … ], "user": { … } }, "object": { "uuid": "string", "name": "string", "label": "string", "createdAt": 0, "createdBy": { … }, "updatedAt": 0, "updatedBy": { … }, "deletedAt": 0, "deletedBy": { … }, "index": 0, "plural": "string", "description": "string", "groups": [ … ], "icon": "string", "showInMenu": true, "defaultTrait": "string", "traits": [ … ], "views": [ … ], "properties": [ … ], "relations": [ … ], "suites": [ … ] }, "options": { "relatedToTemplate": true }, "metaData": { "author": "John Doe", "category": "blog" }, "publishedBy": "string", "publishedAt": 1686582457000, "unpublishedBy": "string", "unpublishedAt": 1686592457000, "publishAt": 1686602457000, "unpublishAt": 1686702457000, "isPublished": false }
Request
Updates an existing webpage identified by its UUID using the provided webpage details. Returns an UpdateResponse containing the updated webpage as a WebpageDTO. Validation: Webpage fields are validated according to the Webpage validation rules. Required fields and format constraints are enforced.
Webpage details
Short summary or excerpt displayed for the webpage.
URL or identifier of the image associated with the webpage.
The Object object associated with the webpage, representing application data.
Map of additional metadata and attributes for the webpage.
Timestamp representing when the webpage was published
Timestamp representing when the webpage was unpublished
Scheduled timestamp for when the webpage will be published
Scheduled timestamp for when the webpage will be unpublished
- Mock serverhttps://developer.caraer.com/_mock/apis/api/v2/webpages/{uuid}
- Productionhttps://v2.api.caraer.com/api/v2/webpages/{uuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://developer.caraer.com/_mock/apis/api/v2/webpages/{uuid}?environment=preview' \
-H 'Authorization: Bearer <YOUR_Opaque_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"environment": "string",
"uuid": "string",
"title": "Homepage",
"excerpt": "This is a summary of the webpage.",
"slug": "homepage",
"image": "https://example.com/image.jpg",
"customCss": "string",
"customJsHead": "string",
"customJsBody": "string",
"content": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"category": "string",
"parentUuid": "string",
"type": "string",
"display": "string",
"text": "string",
"styling": {
"all": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"mobile": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"tablet": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"desktop": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
}
},
"settings": {
"form": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"object": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"index": 0,
"plural": "string",
"description": "string",
"groups": [
"string"
],
"icon": "string",
"showInMenu": true,
"defaultTrait": "string",
"traits": [
"string"
],
"views": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"objects": {},
"properties": []
},
"updatedAt": 0,
"updatedBy": {
"objects": {},
"properties": []
},
"deletedAt": 0,
"deletedBy": {
"objects": {},
"properties": []
},
"index": 0,
"favorite": true,
"team": true,
"shared": true,
"personal": true,
"trait": "string",
"filters": {
"groups": []
},
"shows": [
null
],
"sorts": [
null
],
"limit": 0,
"showIcons": true,
"groupProperty": {},
"rowHeight": "string",
"calculations": [
null
],
"query": "string",
"icon": "string",
"flowProperty": "string",
"defaultView": true,
"isInternallyPublic": true
}
],
"properties": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"objects": {},
"properties": []
},
"updatedAt": 0,
"updatedBy": {
"objects": {},
"properties": []
},
"deletedAt": 0,
"deletedBy": {
"objects": {},
"properties": []
},
"index": 0,
"description": "string",
"type": "string",
"options": [
null
],
"group": "string",
"format": {
"settings": [],
"filters": [],
"rules": []
},
"rules": [
null
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {},
"usedIn": {
"recordUuids": []
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {}
}
],
"relations": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"objects": {},
"properties": []
},
"updatedAt": 0,
"updatedBy": {
"objects": {},
"properties": []
},
"deletedAt": 0,
"deletedBy": {
"objects": {},
"properties": []
},
"index": 0,
"description": "string",
"objects": [
null
]
}
],
"suites": [
"string"
]
},
"grids": [
{
"aiprompt": "string",
"title": "string",
"description": "string",
"type": "string",
"AIPrompt": "string",
"grid": [
[
null
]
]
}
],
"description": "string",
"styling": "string",
"leadscores": [
{
"object": "User",
"relation": "hasProperty",
"property": "email",
"relationIncluded": true,
"operator": "EQUALS",
"value": 12345,
"smart_value": true,
"score": 10
}
],
"relations": [
{
"type": "CONVERSION_PAGE_RECORD",
"relation": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"objects": {},
"properties": []
},
"updatedAt": 0,
"updatedBy": {
"objects": {},
"properties": []
},
"deletedAt": 0,
"deletedBy": {
"objects": {},
"properties": []
},
"index": 0,
"description": "string",
"objects": [
null
]
},
"relatedRelation": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"objects": {},
"properties": []
},
"updatedAt": 0,
"updatedBy": {
"objects": {},
"properties": []
},
"deletedAt": 0,
"deletedBy": {
"objects": {},
"properties": []
},
"index": 0,
"description": "string",
"objects": [
null
]
},
"relatedObject": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"objects": {},
"properties": []
},
"updatedAt": 0,
"updatedBy": {
"objects": {},
"properties": []
},
"deletedAt": 0,
"deletedBy": {
"objects": {},
"properties": []
},
"index": 0,
"plural": "string",
"description": "string",
"groups": [
null
],
"icon": "string",
"showInMenu": true,
"defaultTrait": "string",
"traits": [
null
],
"views": [
null
],
"properties": [
null
],
"relations": [
null
],
"suites": [
null
]
},
"recordUuid": "fc453abc-123e-4567-890a-6789abcd1234",
"relatedObjectConnection": "PRIMARY"
}
],
"wizard": true,
"metadata": {
"property1": "string",
"property2": "string"
},
"thankYouMessage": "string",
"redirectUrl": "string"
},
"openIcon": "string",
"closeIcon": "string",
"alt": "string",
"key": "string",
"playVideo": true,
"startMuted": true,
"loopVideo": true,
"startOffset": 0,
"link": "string",
"style": "string",
"openInNewWindow": true,
"sliderType": "string",
"carouselSpeed": 0.1,
"previewObject": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"plural": "string",
"description": "string",
"groups": [
"string"
],
"icon": "string",
"showInMenu": true,
"defaultTrait": "string",
"traits": [
"string"
],
"views": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"favorite": true,
"team": true,
"shared": true,
"personal": true,
"trait": "string",
"filters": {
"groups": [
null
]
},
"shows": [
{}
],
"sorts": [
{}
],
"limit": 0,
"showIcons": true,
"groupProperty": {
"object": "User",
"relation": "hasProperty",
"property": "email",
"direction": "ASC"
},
"rowHeight": "string",
"calculations": [
{}
],
"query": "string",
"icon": "string",
"flowProperty": "string",
"defaultView": true,
"isInternallyPublic": true
}
],
"properties": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
}
],
"relations": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"objects": [
{}
]
}
],
"suites": [
"string"
]
},
"previews": {
"property1": {
"description": "Preview description example",
"object": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"plural": "string",
"description": "string",
"groups": [
"string"
],
"icon": "string",
"showInMenu": true,
"defaultTrait": "string",
"traits": [
"string"
],
"views": [
{
"shows": [],
"sorts": [],
"calculations": []
}
],
"properties": [
{
"options": [],
"rules": [],
"formatSettings": {}
}
],
"relations": [
{
"objects": []
}
],
"suites": [
"string"
]
},
"recordUuid": "abcdef12-3456-7890-abcd-ef1234567890",
"primary": true,
"previewType": "detail",
"grid": [
[
{}
]
],
"profileImage": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"profileImagePosition": "top",
"profileImageStyling": {
"all": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"mobile": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"tablet": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"desktop": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
}
},
"firstInitialProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"secondInitialProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"whatsAppProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"phoneProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"emailProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"profileImageValue": "string",
"firstInitialPropertyValue": "string",
"secondInitialPropertyValue": "string",
"whatsAppPropertyValue": "string",
"phonePropertyValue": "string",
"emailPropertyValue": "string",
"customCss": "string",
"url": "string",
"styling": {
"all": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"mobile": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"tablet": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"desktop": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
}
},
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"index": 0
},
"property2": {
"description": "Preview description example",
"object": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"plural": "string",
"description": "string",
"groups": [
"string"
],
"icon": "string",
"showInMenu": true,
"defaultTrait": "string",
"traits": [
"string"
],
"views": [
{
"shows": [],
"sorts": [],
"calculations": []
}
],
"properties": [
{
"options": [],
"rules": [],
"formatSettings": {}
}
],
"relations": [
{
"objects": []
}
],
"suites": [
"string"
]
},
"recordUuid": "abcdef12-3456-7890-abcd-ef1234567890",
"primary": true,
"previewType": "detail",
"grid": [
[
{}
]
],
"profileImage": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"profileImagePosition": "top",
"profileImageStyling": {
"all": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"mobile": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"tablet": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"desktop": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
}
},
"firstInitialProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"secondInitialProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"whatsAppProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"phoneProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"emailProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"profileImageValue": "string",
"firstInitialPropertyValue": "string",
"secondInitialPropertyValue": "string",
"whatsAppPropertyValue": "string",
"phonePropertyValue": "string",
"emailPropertyValue": "string",
"customCss": "string",
"url": "string",
"styling": {
"all": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"mobile": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"tablet": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"desktop": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
}
},
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"index": 0
}
},
"previewLayoutOrder": [
"string"
],
"filter": {
"groups": [
{
"items": {
"object": "User",
"relation": "hasProperty",
"property": "email",
"relationIncluded": true,
"operator": "EQUALS",
"value": 12345
}
}
]
},
"orderBy": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": [
null
],
"count": 0
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"name": "string",
"label": "string",
"helpText": "string",
"type": "STRING",
"required": true,
"dynamic": true,
"hidden": true,
"disabled": true,
"options": [
null
],
"defaultValue": null,
"value": null
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"orderByDirection": "string",
"asWebpages": true,
"loop": true,
"limit": 0,
"groupBy": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": [
null
],
"count": 0
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"name": "string",
"label": "string",
"helpText": "string",
"type": "STRING",
"required": true,
"dynamic": true,
"hidden": true,
"disabled": true,
"options": [
null
],
"defaultValue": null,
"value": null
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"filterType": "string",
"searchResultSingleString": "string",
"searchResultPluralString": "string",
"noResultsString": "string",
"searchFieldEnabled": true,
"searchFieldPlaceholder": "string",
"filterBlockEnabled": true,
"filterTitle": "string",
"filterSubtitle": "string",
"filterProperties": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": []
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"options": []
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
}
],
"enableFilterTiles": true,
"enableFilterQuery": true,
"enableRemoveAllFiltersButton": true,
"ctaEnabled": true,
"ctaTitle": "string",
"ctaText": "string",
"ctaButtonText": "string",
"ctaButtonLink": "string",
"platforms": [
"string"
]
},
"children": [
{}
]
},
"sidebar": {
"description": "Preview description example",
"object": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"plural": "string",
"description": "string",
"groups": [
"string"
],
"icon": "string",
"showInMenu": true,
"defaultTrait": "string",
"traits": [
"string"
],
"views": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"index": 0,
"favorite": true,
"team": true,
"shared": true,
"personal": true,
"trait": "string",
"filters": {
"groups": [
{}
]
},
"shows": [
{
"object": "User",
"relation": "hasProperty",
"property": "email",
"separator": "|",
"sticky": false
}
],
"sorts": [
{
"object": "User",
"relation": "hasProperty",
"property": "email",
"direction": "ASC"
}
],
"limit": 0,
"showIcons": true,
"groupProperty": {
"object": "User",
"relation": "hasProperty",
"property": "email",
"direction": "ASC"
},
"rowHeight": "string",
"calculations": [
{
"property": {},
"calculation": "string"
}
],
"query": "string",
"icon": "string",
"flowProperty": "string",
"defaultView": true,
"isInternallyPublic": true
}
],
"properties": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": []
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"options": []
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
}
],
"relations": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
null
],
"filters": {},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"objects": [
{}
]
}
],
"suites": [
"string"
]
},
"recordUuid": "abcdef12-3456-7890-abcd-ef1234567890",
"primary": true,
"previewType": "detail",
"grid": [
[
{
"property": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"text": "Sample text",
"value": null,
"relatedObject": {
"object": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"objects": {},
"properties": []
},
"updatedAt": 0,
"updatedBy": {
"objects": {},
"properties": []
},
"deletedAt": 0,
"deletedBy": {
"objects": {},
"properties": []
},
"index": 0,
"plural": "string",
"description": "string",
"groups": [
null
],
"icon": "string",
"showInMenu": true,
"defaultTrait": "string",
"traits": [
null
],
"views": [
null
],
"properties": [
null
],
"relations": [
null
],
"suites": [
null
]
},
"relation": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"objects": {},
"properties": []
},
"updatedAt": 0,
"updatedBy": {
"objects": {},
"properties": []
},
"deletedAt": 0,
"deletedBy": {
"objects": {},
"properties": []
},
"index": 0,
"description": "string",
"objects": [
null
]
}
},
"relatedObjectValue": null,
"divider": "solid",
"buttonText": "Sample text",
"buttonUrl": "https://www.google.com",
"buttonTextValue": null,
"buttonUrlValue": null,
"settings": {
"showIcon": true,
"iconPadding": 0.1,
"iconColor": "string",
"iconSize": 0.1,
"defaultValue": "string",
"helpText": "string",
"paragraph": "string",
"showColor": true,
"showBorder": true,
"buttonType": "string"
},
"styling": {
"all": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"mobile": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"tablet": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"desktop": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
null
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
null
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
null
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
}
}
}
]
],
"profileImage": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"name": "string",
"label": "string",
"helpText": "string",
"type": "STRING",
"required": true,
"dynamic": true,
"hidden": true,
"disabled": true,
"options": [
{}
],
"defaultValue": null,
"value": null
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"profileImagePosition": "top",
"profileImageStyling": {
"all": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"mobile": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"tablet": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"desktop": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
}
},
"firstInitialProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"name": "string",
"label": "string",
"helpText": "string",
"type": "STRING",
"required": true,
"dynamic": true,
"hidden": true,
"disabled": true,
"options": [
{}
],
"defaultValue": null,
"value": null
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"secondInitialProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"name": "string",
"label": "string",
"helpText": "string",
"type": "STRING",
"required": true,
"dynamic": true,
"hidden": true,
"disabled": true,
"options": [
{}
],
"defaultValue": null,
"value": null
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"whatsAppProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"name": "string",
"label": "string",
"helpText": "string",
"type": "STRING",
"required": true,
"dynamic": true,
"hidden": true,
"disabled": true,
"options": [
{}
],
"defaultValue": null,
"value": null
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"phoneProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"name": "string",
"label": "string",
"helpText": "string",
"type": "STRING",
"required": true,
"dynamic": true,
"hidden": true,
"disabled": true,
"options": [
{}
],
"defaultValue": null,
"value": null
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"emailProperty": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
null
]
},
"property2": {
"groups": [
null
]
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"name": "string",
"label": "string",
"helpText": "string",
"type": "STRING",
"required": true,
"dynamic": true,
"hidden": true,
"disabled": true,
"options": [
{}
],
"defaultValue": null,
"value": null
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
},
"profileImageValue": "string",
"firstInitialPropertyValue": "string",
"secondInitialPropertyValue": "string",
"whatsAppPropertyValue": "string",
"phonePropertyValue": "string",
"emailPropertyValue": "string",
"customCss": "string",
"url": "string",
"styling": {
"all": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"mobile": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"tablet": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
},
"desktop": {
"hide": true,
"customID": "string",
"customClass": "string",
"customAnchor": "string",
"spacing": 0.1,
"directionLTR": true,
"alignContent": "string",
"alignItems": "string",
"justifyContent": "string",
"alignSelf": "string",
"flexWrap": "string",
"flexDirection": "string",
"overflow": "string",
"topMargin": 0.1,
"bottomMargin": 0.1,
"leftMargin": 0.1,
"rightMargin": 0.1,
"topPadding": 0.1,
"bottomPadding": 0.1,
"leftPadding": 0.1,
"rightPadding": 0.1,
"fullWidthEnabled": true,
"maxWidth": 0.1,
"minWidth": 0.1,
"width": 0.1,
"flex": 0,
"minHeight": 0.1,
"maxHeight": 0.1,
"height": 0.1,
"borderRadiusTopLeft": 0.1,
"borderRadiusTopRight": 0.1,
"borderRadiusBottomLeft": 0.1,
"borderRadiusBottomRight": 0.1,
"borderWidthTop": 0.1,
"borderWidthBottom": 0.1,
"borderWidthLeft": 0.1,
"borderWidthRight": 0.1,
"borderColorTop": "string",
"borderColorBottom": "string",
"borderColorLeft": "string",
"borderColorRight": "string",
"borderStyleTop": "string",
"borderStyleBottom": "string",
"borderStyleLeft": "string",
"borderStyleRight": "string",
"backgroundVideo": "string",
"backgroundImage": "string",
"backgroundMediaRepeat": "string",
"backgroundMediaFit": "string",
"backgroundMediaSizeWidth": 0.1,
"backgroundMediaSizeHeight": 0.1,
"backgroundMediaPosition": "string",
"backgroundMediaScroll": "string",
"backgroundMediaParallax": true,
"backgroundMediaAutoPlay": true,
"backgroundMediaMuted": true,
"backgroundMediaLoop": true,
"backgroundColorOverlayColor": "string",
"backgroundColorOverlayOpacity": 0.1,
"backgroundGradientOverlayColors": [
"string"
],
"backgroundGradientOverlayOpacity": 0.1,
"backgroundGradientOverlayDirection": "string",
"backgroundColor": "string",
"backgroundColorOffsetBottom": 0.1,
"backgroundColorOffsetLeft": 0.1,
"backgroundColorOffsetRight": 0.1,
"backgroundColorOffsetTop": 0.1,
"backgroundGradientColors": [
"string"
],
"backgroundGradientOpacity": 0.1,
"backgroundGradientDirection": "string",
"animationDelay": 0.1,
"animationDuration": 0.1,
"animationIn": "string",
"animationOut": "string",
"animationRepeat": "string",
"animationDirection": "string",
"animationTimingFunction": "string",
"animationFillMode": "string",
"mediaHover": "string",
"mediaAlignment": "string",
"mediaFit": "string",
"mediaPosition": "string",
"enlargeOnClickBorderRadiusTopLeft": 0.1,
"enlargeOnClickBorderRadiusTopRight": 0.1,
"enlargeOnClickBorderRadiusBottomLeft": 0.1,
"enlargeOnClickBorderRadiusBottomRight": 0.1,
"enlargeOnClickBorderWidthTop": 0.1,
"enlargeOnClickBorderWidthBottom": 0.1,
"enlargeOnClickBorderWidthLeft": 0.1,
"enlargeOnClickBorderWidthRight": 0.1,
"enlargeOnClickBorderColorTop": "string",
"enlargeOnClickBorderColorBottom": "string",
"enlargeOnClickBorderColorLeft": "string",
"enlargeOnClickBorderColorRight": "string",
"enlargeOnClickBorderStyleTop": "string",
"enlargeOnClickBorderStyleBottom": "string",
"enlargeOnClickBorderStyleLeft": "string",
"enlargeOnClickBorderStyleRight": "string",
"enlargeOnClickShadowOffsetX": 0.1,
"enlargeOnClickShadowOffsetY": 0.1,
"enlargeOnClickShadowBlur": 0.1,
"enlargeOnClickShadowColor": "string",
"enlargeOnClickShadowSpread": 0.1,
"enlargeOnClickShadowInset": true,
"enlargeOnClickShadowOpacity": 0.1,
"enlargeOnClickScale": 0.1,
"shadowOffsetX": 0.1,
"shadowOffsetY": 0.1,
"shadowBlur": 0.1,
"shadowBorderRadiusTopLeft": 0.1,
"shadowBorderRadiusTopRight": 0.1,
"shadowBorderRadiusBottomLeft": 0.1,
"shadowBorderRadiusBottomRight": 0.1,
"shadowColor": "string",
"shadowSpread": 0.1,
"shadowInset": true,
"shadowOpacity": 0.1,
"textGradientOverlayColors": [
"string"
],
"textGradientOverlayOpacity": 0.1,
"textGradientOverlayDirection": "string",
"darkTextEnabled": true,
"textAlign": "string",
"transitionScrollSpeed": 0.1,
"autoRotate": true,
"autoRotateInterval": 0.1,
"buttonIcon": "string",
"buttonIconPosition": "string",
"buttonIconColor": "string",
"openInNewWindow": true,
"sidebar": true,
"sidebarPosition": "string",
"sidebarAnimation": "string",
"sidebarAnimationDuration": 0.1,
"sidebarAnimationTimingFunction": "string",
"fontFamily": "string",
"fontSize": 0.1,
"fontWeight": "string",
"fontDecoration": "string",
"fontTextTransform": "string",
"fontLineHeight": 0.1,
"fontLetterSpacing": 0.1,
"fontColorLight": "string",
"fontColorDark": "string",
"h1FontFamily": "string",
"h1FontSize": 0.1,
"h1FontWeight": "string",
"h1FontDecoration": "string",
"h1TextTransform": "string",
"h1LineHeight": 0.1,
"h1LetterSpacing": 0.1,
"h1ColorLight": "string",
"h1ColorDark": "string",
"h2FontFamily": "string",
"h2FontSize": 0.1,
"h2FontWeight": "string",
"h2FontDecoration": "string",
"h2TextTransform": "string",
"h2LineHeight": 0.1,
"h2LetterSpacing": 0.1,
"h2ColorLight": "string",
"h2ColorDark": "string",
"h3FontFamily": "string",
"h3FontSize": 0.1,
"h3FontWeight": "string",
"h3FontDecoration": "string",
"h3TextTransform": "string",
"h3LineHeight": 0.1,
"h3LetterSpacing": 0.1,
"h3ColorLight": "string",
"h3ColorDark": "string",
"h4FontFamily": "string",
"h4FontSize": 0.1,
"h4FontWeight": "string",
"h4FontDecoration": "string",
"h4TextTransform": "string",
"h4LineHeight": 0.1,
"h4LetterSpacing": 0.1,
"h4ColorLight": "string",
"h4ColorDark": "string",
"h5FontFamily": "string",
"h5FontSize": 0.1,
"h5FontWeight": "string",
"h5FontDecoration": "string",
"h5TextTransform": "string",
"h5LineHeight": 0.1,
"h5LetterSpacing": 0.1,
"h5ColorLight": "string",
"h5ColorDark": "string",
"h6FontFamily": "string",
"h6FontSize": 0.1,
"h6FontWeight": "string",
"h6FontDecoration": "string",
"h6TextTransform": "string",
"h6LineHeight": 0.1,
"h6LetterSpacing": 0.1,
"h6ColorLight": "string",
"h6ColorDark": "string",
"navigationFontFamily": "string",
"navigationFontSize": 0.1,
"navigationFontWeight": "string",
"navigationFontDecoration": "string",
"navigationTextTransform": "string",
"navigationLineHeight": 0.1,
"navigationLetterSpacing": 0.1,
"navigationColorLight": "string",
"navigationColorDark": "string",
"subNavigationFontFamily": "string",
"subNavigationFontSize": 0.1,
"subNavigationFontWeight": "string",
"subNavigationFontDecoration": "string",
"subNavigationTextTransform": "string",
"subNavigationLineHeight": 0.1,
"subNavigationLetterSpacing": 0.1,
"subNavigationColorLight": "string",
"subNavigationColorDark": "string",
"bodyFontFamily": "string",
"bodyFontSize": 0.1,
"bodyFontWeight": "string",
"bodyFontDecoration": "string",
"bodyTextTransform": "string",
"bodyLineHeight": 0.1,
"bodyLetterSpacing": 0.1,
"bodyColorLight": "string",
"bodyColorDark": "string",
"hyperlinkFontFamily": "string",
"hyperlinkFontSize": 0.1,
"hyperlinkFontWeight": "string",
"hyperlinkFontDecoration": "string",
"hyperlinkTextTransform": "string",
"hyperlinkLineHeight": 0.1,
"hyperlinkLetterSpacing": 0.1,
"hyperlinkColorLight": "string",
"hyperlinkColorDark": "string"
}
},
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"index": 0
},
"sidebarRelation": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"objects": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"plural": "string",
"description": "string",
"groups": [
"string"
],
"icon": "string",
"showInMenu": true,
"defaultTrait": "string",
"traits": [
"string"
],
"views": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"favorite": true,
"team": true,
"shared": true,
"personal": true,
"trait": "string",
"filters": {
"groups": [
null
]
},
"shows": [
{}
],
"sorts": [
{}
],
"limit": 0,
"showIcons": true,
"groupProperty": {
"object": "User",
"relation": "hasProperty",
"property": "email",
"direction": "ASC"
},
"rowHeight": "string",
"calculations": [
{}
],
"query": "string",
"icon": "string",
"flowProperty": "string",
"defaultView": true,
"isInternallyPublic": true
}
],
"properties": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {},
"properties": [
null
],
"user": {
"scopes": [],
"filters": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
null
],
"filters": [
null
],
"rules": [
null
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
null
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
}
],
"relations": [
{}
],
"suites": [
"string"
]
}
]
},
"sidebarObject": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"plural": "string",
"description": "string",
"groups": [
"string"
],
"icon": "string",
"showInMenu": true,
"defaultTrait": "string",
"traits": [
"string"
],
"views": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"favorite": true,
"team": true,
"shared": true,
"personal": true,
"trait": "string",
"filters": {
"groups": [
{
"items": {}
}
]
},
"shows": [
{
"object": "User",
"relation": "hasProperty",
"property": "email",
"separator": "|",
"sticky": false
}
],
"sorts": [
{
"object": "User",
"relation": "hasProperty",
"property": "email",
"direction": "ASC"
}
],
"limit": 0,
"showIcons": true,
"groupProperty": {
"object": "User",
"relation": "hasProperty",
"property": "email",
"direction": "ASC"
},
"rowHeight": "string",
"calculations": [
{
"property": {
"object": "User",
"relation": "hasProperty",
"property": "email",
"separator": "|",
"sticky": false
},
"calculation": "string"
}
],
"query": "string",
"icon": "string",
"flowProperty": "string",
"defaultView": true,
"isInternallyPublic": true
}
],
"properties": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": [
null
],
"count": 0
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"name": "string",
"label": "string",
"helpText": "string",
"type": "STRING",
"required": true,
"dynamic": true,
"hidden": true,
"disabled": true,
"options": [
null
],
"defaultValue": null,
"value": null
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
}
],
"relations": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"objects": [
{}
]
}
],
"suites": [
"string"
]
},
"record": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{
"items": {}
}
]
},
"property2": {
"groups": [
{
"items": {}
}
]
}
},
"role": "string",
"record": {}
}
},
"object": {
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": [
{}
]
},
"property2": {
"groups": [
{}
]
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"plural": "string",
"description": "string",
"groups": [
"string"
],
"icon": "string",
"showInMenu": true,
"defaultTrait": "string",
"traits": [
"string"
],
"views": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"favorite": true,
"team": true,
"shared": true,
"personal": true,
"trait": "string",
"filters": {
"groups": [
{
"items": {}
}
]
},
"shows": [
{
"object": "User",
"relation": "hasProperty",
"property": "email",
"separator": "|",
"sticky": false
}
],
"sorts": [
{
"object": "User",
"relation": "hasProperty",
"property": "email",
"direction": "ASC"
}
],
"limit": 0,
"showIcons": true,
"groupProperty": {
"object": "User",
"relation": "hasProperty",
"property": "email",
"direction": "ASC"
},
"rowHeight": "string",
"calculations": [
{
"property": {
"object": "User",
"relation": "hasProperty",
"property": "email",
"separator": "|",
"sticky": false
},
"calculation": "string"
}
],
"query": "string",
"icon": "string",
"flowProperty": "string",
"defaultView": true,
"isInternallyPublic": true
}
],
"properties": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"type": "string",
"options": [
{
"name": "string",
"label": "string",
"icon": "string",
"color": "string",
"disabled": true,
"usedIn": {
"recordUuids": [
null
],
"count": 0
}
}
],
"group": "string",
"format": {
"label": "string",
"name": "string",
"icon": "string",
"type": "string",
"settings": [
{
"name": "string",
"label": "string",
"helpText": "string",
"type": "STRING",
"required": true,
"dynamic": true,
"hidden": true,
"disabled": true,
"options": [
null
],
"defaultValue": null,
"value": null
}
],
"filters": [
"string"
],
"rules": [
"string"
]
},
"rules": [
"string"
],
"immutable": true,
"hidden": true,
"nonPublic": true,
"indexed": true,
"editable": true,
"formatSettings": {
"property1": null,
"property2": null
},
"usedIn": {
"recordUuids": [
"string"
],
"count": 0
},
"icon": "string",
"webpagePublic": true,
"embeddable": true,
"minAndMaxValue": {
"t1": 0,
"t2": 0
}
}
],
"relations": [
{
"uuid": "string",
"name": "string",
"label": "string",
"createdAt": 0,
"createdBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"updatedAt": 0,
"updatedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"deletedAt": 0,
"deletedBy": {
"name": "string",
"label": "string",
"createdAt": 0,
"updatedAt": 0,
"deletedAt": 0,
"createdByUuid": "string",
"updatedByUuid": "string",
"deletedByUuid": "string",
"index": 0,
"complete": true,
"deleted": true,
"uuid": "string",
"objects": {
"property1": null,
"property2": null
},
"properties": [
{
"label": "string",
"name": "string",
"value": null,
"type": "string",
"icon": "string"
}
],
"user": {
"uuid": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"initials": "string",
"scopes": [
"string"
],
"filters": {
"property1": {
"groups": []
},
"property2": {
"groups": []
}
},
"role": "string",
"record": {}
}
},
"index": 0,
"description": "string",
"objects": [
{}
]
}
],
"suites": [
"string"
]
},
"options": {
"relatedToTemplate": true
},
"metaData": {
"author": "John Doe",
"category": "blog"
},
"publishedBy": "string",
"publishedAt": 1686582457000,
"unpublishedBy": "string",
"unpublishedAt": 1686592457000,
"publishAt": 1686602457000,
"unpublishAt": 1686702457000,
"isPublished": false
}'{ "message": "Success", "data": null }
- Mock serverhttps://developer.caraer.com/_mock/apis/api/v2/webpages/{uuid}/unpublish
- Productionhttps://v2.api.caraer.com/api/v2/webpages/{uuid}/unpublish
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://developer.caraer.com/_mock/apis/api/v2/webpages/{uuid}/unpublish?unpublishAt=string&environment=production' \
-H 'Authorization: Bearer <YOUR_Opaque_HERE>'{ "message": "Success", "data": null }
Property
Properties define the schema and field definitions for CaraerObjects. A Property specifies the data type (string, number, date, boolean, etc.), format (text, email, select, multi-select, linked, file, etc.), validation rules (required, unique, character limits, etc.), and display options (label, description, icon, groups). Properties determine what data Records can store, how it's validated, how it's displayed in forms and views, and how it can be searched. Each Property belongs to a CaraerObject and defines one field in that object's schema. Properties support various formats including linked properties (relationships to other Records), file uploads, rich text, and custom option lists. Properties are immutable once created to maintain data integrity, and they can be organized into groups for better UX. The Property system enables dynamic, schema-on-read data modeling where object structures can be customized per company without code changes.
Applications
Apps are third-party integrations and extensions that extend Caraer functionality. They can provide additional features, connect to external services, include Webhooks for event handling, and offer custom UI components through AppBars. Apps enable the platform ecosystem where companies can integrate with their existing tools and workflows. Apps can be public (available to all companies) or private (company-specific), have pricing models, descriptions, and settings schemas. Apps can include Webhooks with rate limiting and secret-based authentication. The App system enables extensibility and integration capabilities, allowing the platform to connect with external systems and provide additional functionality beyond the core platform features.
Modules
Modules are reusable page content components (PageContent) that can be shared across Webpages. They enable content reusability, template systems, and consistent UI components. Modules can be public (shared across all companies in the platform) or private (company-specific). Public modules are managed by developers and provide common content templates, while private modules allow companies to create their own reusable content blocks. Modules use the same PageContent structure as Webpages, enabling complex layouts with sections, rows, columns, and various content types. Modules improve content management efficiency by allowing content creators to reuse common components across multiple pages, ensuring consistency and reducing duplication.
Company
Companies represent multi-tenant organizations in Caraer. Each company has its own isolated database, users, objects, Records, and data. Companies enable SaaS multi-tenancy where each organization's data is completely isolated from others. Companies have settings (branding, configuration), subdomains for custom URLs, and can be customized with their own Objects, Properties, Forms, and Webpages. Users belong to one or more companies and can switch between them. Companies maintain their own access control, scopes, and permissions. The Company system enables the platform to serve multiple organizations while maintaining strict data isolation and allowing each company to customize the platform to their needs.
Objects
CaraerObjects are schema definitions for dynamic domain entities (e.g., "Candidate", "Vacancy", "Company"). They define the structure and behavior of Records through Properties (field definitions), Relations (connections to other objects), Views (display configurations), and Traits (behavioral features like Flow, Table, Webpage, User). Objects enable a flexible, schema-on-read data model where entities can be customized per company without code changes. Each Object has a name (lowercase identifier), label (display name), plural form, description, icon, and can be organized into groups. Objects can have traits that add specific behaviors: Flow enables kanban-style workflows, Table provides tabular data views, Webpage allows Records to have public-facing pages, and User enables authentication and user profiles. Objects are the foundation of the platform's dynamic data modeling system.