forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_core.field_caps.yaml
34 lines (34 loc) · 1.02 KB
/
_core.field_caps.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
openapi: 3.1.0
info:
title: Schemas of `_core.field_caps` Category
description: Schemas of `_core.field_caps` category.
version: 1.0.0
paths: {}
components:
schemas:
FieldCapability:
type: object
properties:
aggregatable:
description: Whether this field can be aggregated on all indexes.
type: boolean
indices:
$ref: '_common.yaml#/components/schemas/Indices'
meta:
$ref: '_common.yaml#/components/schemas/Metadata'
non_aggregatable_indices:
$ref: '_common.yaml#/components/schemas/Indices'
non_searchable_indices:
$ref: '_common.yaml#/components/schemas/Indices'
searchable:
description: Whether this field is indexed for search on all indexes.
type: boolean
type:
type: string
metadata_field:
description: Whether this field is registered as a metadata field.
type: boolean
required:
- aggregatable
- searchable
- type