Files
openstapps/test/mapping-model/mappings/src/nested.ts
Wieland Schöbl 42c9d02036 Initial Commit
2021-08-04 13:25:50 +02:00

71 lines
1.7 KiB
TypeScript

/*
* Copyright (C) 2020 StApps
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <https://www.gnu.org/licenses/>.
*/
import {ThingType} from './types';
import {MapAggTestOptions} from '../../MapAggTestOptions';
import {ElasticsearchDataType} from '../../../../src/mappings/definitions/typemap';
/**
* @indexable
*/
export interface Nested {
foo: {
depth1_1: {
depth2_1: {
depth3_1: number;
/**
* @keyword
*/
depth3_2: string;
}
depth2_2: boolean;
}
}
type: ThingType.Nested;
}
export const nestedTest: MapAggTestOptions = {
name: ThingType.Nested,
map: {
maps: {
foo: {
dynamic: 'strict',
properties: {
depth1_1: {
dynamic: 'strict',
properties: {
depth2_1: {
dynamic: 'strict',
properties: {
depth3_1: {
type: ElasticsearchDataType.integer
},
depth3_2: {
type: ElasticsearchDataType.keyword
}
}
},
depth2_2: {
type: ElasticsearchDataType.boolean
}
}
}
}
}
}
}
};