forked from sngular/scs-multiapi-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-test.yml
More file actions
55 lines (55 loc) · 1.29 KB
/
Copy pathapi-test.yml
File metadata and controls
55 lines (55 loc) · 1.29 KB
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
45
46
47
48
49
50
51
52
53
54
55
---
# Regression for OpenAPI 3.1 support: a `$ref` may carry sibling keywords such as
# `description`. The generator must still resolve the reference regardless of the
# relative ordering of `$ref` and its siblings (see issue: $ref + description).
openapi: "3.1.0"
info:
version: 1.0.0
title: Order API (OpenAPI 3.1)
license:
name: MIT
servers:
- url: http://localhost:8080/v1
tags:
- name: order
paths:
/order:
get:
summary: Get an order
operationId: getOrder
tags:
- order
responses:
'200':
description: The requested order
content:
application/json:
schema:
$ref: "#/components/schemas/Order"
components:
schemas:
Order:
type: object
properties:
id:
type: string
customer:
description: The customer that placed the order
$ref: "#/components/schemas/Customer"
shippingAddress:
$ref: "#/components/schemas/Address"
description: Where the order is shipped
Customer:
type: object
properties:
name:
type: string
email:
type: string
Address:
type: object
properties:
street:
type: string
city:
type: string