forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_core.get.yaml
37 lines (37 loc) · 913 Bytes
/
_core.get.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
openapi: 3.1.0
info:
title: Schemas of _core.get category
description: Schemas of _core.get category
version: 1.0.0
paths: {}
components:
schemas:
GetResult:
type: object
properties:
_type:
$ref: '_common.yaml#/components/schemas/Type'
_index:
$ref: '_common.yaml#/components/schemas/IndexName'
fields:
type: object
additionalProperties:
type: object
found:
type: boolean
_id:
$ref: '_common.yaml#/components/schemas/Id'
_primary_term:
type: number
_routing:
type: string
_seq_no:
$ref: '_common.yaml#/components/schemas/SequenceNumber'
_source:
type: object
_version:
$ref: '_common.yaml#/components/schemas/VersionNumber'
required:
- _id
- _index
- found