Skip to content
Snippets Groups Projects
Forked from Pavel / search-es
32 commits behind the upstream repository.
product.mappings.php 1.32 KiB
<?php

return [
    'properties' => [
        'data' => [
            'type' => 'object',
            'enabled' => false,
        ],
        'full_search_content' => [
            'type' => 'text',
        ],
        'category_id' => [
            'type'  => 'keyword',
            'index' => false,
        ],
        'search_data' => [
            'type' => 'nested',
            'properties' => [
                'keyword_facet' => [
                    'type' => 'nested',
                    'properties' => [
                        'facet_code' => [
                            'type'  => 'keyword',
                            'index' =>  true
                        ],
                        'facet_value' => [
                            'type'  => 'keyword',
                            'index' =>  true
                        ],
                    ]
                ],
                'number_facet' => [
                    'type' => 'nested',
                    'properties' => [
                        'facet_code' => [
                            'type'  => 'keyword',
                            'index' =>  true
                        ],
                        'facet_value' => [
                            'type'  => 'double'
                        ]
                    ]
                ]
            ]
        ]
    ],
];