settings_schema.json

The settings_schema.json file controls the configuration options and content in the Theme Editor under Theme Settings. All configuration values in the Theme Editor are stored in settings_data.json.


Location

The settings_schema.json file is located in the config directory:

└── theme
...
├── config
├── settings_data.json
└── settings_schema.json

Structure

The settings_schema.json file consists of an array of objects, each of which must have the following properties:

PropertyDescriptionRequired
nameType of the configurationYes
settingsRelevant configurations for settingsYes

The settings_schema.json file should follow this basic format:

[
{
"name": "Type",
"settings": [
...
]
},
...
]

As a JSON file, settings_schema.json must contain valid JSON content. Additionally, ensure that all necessary settings comply with the appropriate syntax.


Usage

When working with the settings_schema.json file, familiarize yourself with the following:

Setting Types

There are two types of settings:

TypeDescription
Input SettingsThese settings store values configured by merchants
Sidebar SettingsThese do not store values and cannot be configured. They describe controls, provide categorization, and enhance data entry precision

Accessing Settings

Theme settings can be accessed through the settings object. For more information on syntax and considerations, refer to Settings.

Adding Theme Metadata

Theme metadata appears in the upper left corner of the Theme Editor and is also displayed in the theme store:

image.png image.png image.png

To add this metadata, include an object with the name theme_info in the settings_schema.json file. This object must include the following properties:

PropertyDescriptionRequired
nameThe value must be theme_infoYes
theme_nameName of the themeYes
theme_versionVersion of the themeYes
theme_authorAuthor of the themeYes
theme_documentation_urlURL for the theme documentationYes
theme_support_urlURL for theme supportNo
theme_cover_imgCover image displayed in the theme storeYes
theme_home_pc_preview_imgPreview image of the home page for PC in the theme storeYes
theme_home_mobile_preview_imgPreview image of the home page for mobile in the theme storeYes
theme_pdp_pc_preview_imgPreview image of the product detail page for PC in the theme storeYes
theme_pdp_mobile_preview_imgPreview image of the product detail page for mobile in the theme storeYes
refill_section_objectIndicates if the section object refill is enabledYes
theme_type_versionIdentifies the theme seriesYes
Warning
  • refill_section_object and theme_type_version are identifiers for OS2.1 themes. Missing these will cause theme issues.
  • Current OS2.1 themes include: Seed, Charm, Modern, and North. The OS2.1 label is also visible in the theme store.

For example:

[
{
"name": "Seed",
"theme_name": "Seed",
"theme_version": "1.0.0",
"theme_author": "Shopline",
"theme_documentation_url": "",
"theme_support_url": "",
"theme_cover_img": "",
"theme_home_pc_preview_img": "",
"theme_home_mobile_preview_img": "",
"theme_pdp_pc_preview_img": "",
"theme_pdp_mobile_preview_img": "",
"refill_section_object": true,
"theme_type_version": "OS_2.1"
},
...
]
Was this article helpful to you?