All Products
Search
Document Center

OpenSearch:App

Last Updated:Apr 01, 2026

The details of an application version.

Example

{
    "id": "100303063",
    "description": "",
    "status": "ok",
    "fetchFields": [
        "id",
        "title",
        "buy",
        "cate_id",
        "cate_name"
    ],
    "type": "enhanced",
    "schema": {
        "tables": {
            "main": {
                "primaryTable": true,
                "name": "main",
                "fields": {
                    "id": {
                        "name": "id",
                        "type": "LITERAL",
                        "primaryKey": true
                    },
                    "title": {
                        "name": "title",
                        "type": "TEXT",
                        "primaryKey": false
                    },
                    "buy": {
                        "name": "buy",
                        "type": "INT",
                        "primaryKey": false
                    },
                    "cate_id": {
                        "name": "cate_id",
                        "type": "INT",
                        "primaryKey": false
                    },
                    "cate_name": {
                        "name": "cate_name",
                        "type": "LITERAL",
                        "primaryKey": false
                    }
                }
            }
        },
        "indexes": {
            "searchFields": {
                "id": {
                    "fields": [
                        "id"
                    ]
                },
                "default": {
                    "fields": [
                        "title"
                    ],
                    "analyzer": "chn_standard"
                },
                "buy": {
                    "fields": [
                        "buy"
                    ]
                }
            },
            "filterFields": [
                "id",
                "buy",
                "cate_id",
                "cate_name"
            ]
        }
    },
    "algoDeploymentId": 0,
    "firstRanks": [{
            "id": "",
            "name": "default",
            "description": "",
            "active": false,
            "meta": [{
                "attribute": "static_bm25()",
                "arg": "",
                "weight": 1
            }],
            "created": 0,
            "updated": 0
        },
        {
            "id": "887857",
            "name": "first_rank_lsh_1",
            "description": "",
            "active": true,
            "meta": [{
                    "attribute": "static_bm25()",
                    "arg": "",
                    "weight": 10
                },
                {
                    "attribute": "exact_match_boost()",
                    "arg": "",
                    "weight": 20
                },
                {
                    "attribute": "buy",
                    "arg": "",
                    "weight": 30
                }
            ],
            "created": 1590977140,
            "updated": 1590977140
        }
    ],
    "secondRanks": [{
        "id": "-1",
        "name": "default",
        "meta": "",
        "active": true,
        "description": "",
        "created": 0,
        "updated": 0
    }],
    "dataSources": [],
    "summaries": [{
        "name": "default",
        "meta": [{
            "field": "title",
            "len": 50,
            "element": "em",
            "ellipsis": "...",
            "snippet": 1
        }]
    }],
    "created": 1590977140,
    "queryProcessors": [{
        "name": "sum_lsh_test_1",
        "active": true,
        "indexes": [
            "default"
        ],
        "processors": [{
                "useSystemDictionary": true,
                "interventionDictionary": "",
                "name": "stop_word"
            },
            {
                "useSystemDictionary": true,
                "interventionDictionary": "",
                "name": "spell_check"
            },
            {
                "useSystemDictionary": true,
                "interventionDictionary": "",
                "name": "term_weighting"
            },
            {
                "useSystemDictionary": true,
                "interventionDictionary": "",
                "name": "synonym"
            }
        ],
        "domain": "GENERAL",
        "created": 1590977142,
        "updated": 1590977142
    }],
    "progressPercent": 100
}

Fields

FieldTypeDescription
idStringThe ID of the version.
descriptionStringThe description of the version.
statusStringThe status of the version. Valid values: ok, stopped, frozen, initializing, unavailable, data_waiting, data_preparing.
fetchFieldsArrayThe default display fields.
typeStringThe type of the version. Valid values: standard (a standard application), advance (an advanced application of the old type — new applications cannot use this type), enhanced (an advanced application of the new type).
schemaObjectThe schema of the application. For more information, see Schema.
algoDeploymentIdIntegerThe ID of the rough sort expression.
progressPercentIntegerThe progress of data import, as a percentage. For example, 83 indicates 83%.
createdIntegerThe timestamp when the version was created.
firstRanks[]ObjectThe rough sort expressions. For more information, see FirstRank.
secondRanks[]ObjectThe fine sort expressions. For more information, see SecondRank.
dataSources[]ObjectThe data sources. For more information, see DataSource.
summaries[]ObjectThe search result summary settings. For more information, see Summary.
queryProcessors[]ObjectThe query analysis rules. For more information, see QueryProcessor.