Skip to content
Snippets Groups Projects
product.mappings.php 1.75 KiB
Newer Older
Pavel's avatar
Pavel committed
<?php

return [
    'properties' => [
        'data' => [
            'type' => 'object',
            'enabled' => false,
        ],
        'full_search_content' => [
            'type' => 'text',
        ],
Pavel's avatar
Pavel committed
        'suggest_search_content' => [
            'type' => 'text',
            'analyzer' => 'autocomplete',
            'search_analyzer' => 'standard',
        ],
Pavel's avatar
Pavel committed
        'category_id' => [
Pavel's avatar
Pavel committed
            'type' => 'keyword',
            'index' => false,
        ],
        'rating' => [
            'type' => 'double',
            'index' => true,
        ],
        'new' => [
            'type' => 'boolean',
            'index' => true
Pavel's avatar
Pavel committed
        ],
        'popular' => [
            'type' => 'double',
Pavel's avatar
Pavel committed
            'index' => false,
        ],
        'search_data' => [
            'type' => 'nested',
            'properties' => [
                'keyword_facet' => [
                    'type' => 'nested',
                    'properties' => [
                        'facet_code' => [
Pavel's avatar
Pavel committed
                            'type' => 'keyword',
                            'index' => true
Pavel's avatar
Pavel committed
                        ],
                        'facet_value' => [
Pavel's avatar
Pavel committed
                            'type' => 'keyword',
                            'index' => true
                        ]
Pavel's avatar
Pavel committed
                    ]
                ],
                'number_facet' => [
                    'type' => 'nested',
                    'properties' => [
                        'facet_code' => [
Pavel's avatar
Pavel committed
                            'type' => 'keyword',
                            'index' => true
Pavel's avatar
Pavel committed
                        ],
                        'facet_value' => [
Pavel's avatar
Pavel committed
                            'type' => 'double'
Pavel's avatar
Pavel committed
                        ]
                    ]
                ]
            ]
        ]
    ],
Pavel's avatar
Pavel committed
];