-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
35 lines (30 loc) · 779 Bytes
/
openapi.yaml
File metadata and controls
35 lines (30 loc) · 779 Bytes
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
openapi: "3.0.0"
info:
title: PyBackendBoilerplate Microservice Boilerplate
version: "1.0"
description: Multi-file boilerplate for OpenAPI Specification.
servers:
- url: http://localhost:5000/v1.0
paths:
/:
$ref: "./paths/root.yaml"
/ping/:
$ref: "./paths/ping.yaml"
/hello/world/:
$ref: "./paths/hello/world/root.yaml"
/hello/world/greeting/:
$ref: "./paths/hello/world/greeting.yaml"
/hello/world/greeting/{name}:
$ref: "./paths/hello/world/personal.yaml"
components:
parameters:
name:
$ref: "./parameters/path/name.yaml"
schemas:
Error:
$ref: "./schemas/Error.yaml"
responses:
UnexpectedError:
$ref: "./responses/UnexpectedError.yaml"
NullResponse:
$ref: "./responses/NullResponse.yaml"