-
Notifications
You must be signed in to change notification settings - Fork 62
/
_core.mget.yaml
44 lines (44 loc) · 1.25 KB
/
_core.mget.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
35
36
37
38
39
40
41
42
43
44
openapi: 3.1.0
info:
title: Schemas of `_core.mget` Category
description: Schemas of `_core.mget` category.
version: 1.0.0
paths: {}
components:
schemas:
Operation:
type: object
properties:
_id:
$ref: '_common.yaml#/components/schemas/Id'
_index:
$ref: '_common.yaml#/components/schemas/IndexName'
routing:
$ref: '_common.yaml#/components/schemas/Routing'
_source:
$ref: '_core.search.yaml#/components/schemas/SourceConfig'
stored_fields:
$ref: '_common.yaml#/components/schemas/Fields'
version:
$ref: '_common.yaml#/components/schemas/VersionNumber'
version_type:
$ref: '_common.yaml#/components/schemas/VersionType'
required:
- _id
ResponseItem:
oneOf:
- $ref: '_core.get.yaml#/components/schemas/GetResult'
- $ref: '#/components/schemas/MultiGetError'
MultiGetError:
type: object
properties:
error:
$ref: '_common.yaml#/components/schemas/ErrorCause'
_id:
$ref: '_common.yaml#/components/schemas/Id'
_index:
$ref: '_common.yaml#/components/schemas/IndexName'
required:
- _id
- _index
- error