All Products
Search
Document Center

OpenSearch:UserAnalyzer

Last Updated:Apr 01, 2026

The data model for a custom analyzer in Open Search Industry Algorithm Edition.

Fields

FieldTypeDescription
idIntegerThe ID of the custom analyzer.
nameStringThe name of the custom analyzer.
businessStringThe built-in analyzer on which the custom analyzer is based. For valid values, see Built-in analyzers.
dicts[]ObjectThe custom dictionaries for analysis. For field details, see UserDict.
availableBooleanIndicates whether the custom analyzer is available.
createdIntegerThe timestamp when the custom analyzer was created. Unit: seconds.
updatedIntegerThe timestamp when the custom analyzer was last updated. Unit: seconds.

Built-in analyzers

The business field specifies the built-in analyzer on which the custom analyzer is based.

ValueDescription
chn_standardA general analyzer for Chinese text.
chn_scene_nameAn analyzer for person names in Chinese.
chn_ecommerceAn analyzer for Chinese text from the E-commerce industry.
chn_it_contentAn analyzer for IT-related text.
en_minA fine-grained analyzer for English text.
th_standardA general analyzer for Thai text.
th_ecommerceAn analyzer for Thai text from the E-commerce industry.
vn_standardA general analyzer for Vietnamese text.
chn_community_itAn analyzer for text from the IT industry.
chn_ecommerce_generalA general analyzer for text from the E-commerce industry.
chn_esports_generalA general analyzer for text from the gaming industry.
chn_edu_questionAn analyzer for test question-related text from the education industry.

Example

{
    "id": 1234,
    "name": "kevin_test2",
    "business": "chn_standard",
    "dicts": [{
        "id": 123,
        "type": "segment",
        "entriesLimit": 4,
        "entriesCount": -1,
        "available": false,
        "created": 1588054131,
        "updated": 1588054131
    }],
    "available": true,
    "created": 1588054131,
    "updated": 1588054131
}