-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHelloWorldWebsitePrimer.yaml
45 lines (45 loc) · 1.04 KB
/
HelloWorldWebsitePrimer.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
45
openapi: 3.0.1
info:
title: HelloWorldAPI
version: "1.0"
servers:
- url: http://localhost:8000
tags:
- name: HelloWorldAPIProvider-HomeResource
externalDocs:
description: The role of this endpoint, offering a HelloWorldEndpoint contract,
is not specified.
url: ""
paths:
/:
post:
tags:
- HelloWorldAPIProvider-HomeResource
description: unspecified operation responsibility
operationId: HomeResource-sayHello
parameters: []
requestBody:
content:
application/json:
schema:
type: object
properties:
in:
type: string
responses:
"200":
description: sayHello successful execution
content:
application/json:
schema:
$ref: '#/components/schemas/SampleDTO'
components:
schemas:
SampleDTO:
type: object
properties:
anonymous1:
type: string
format: uuid
anonymous2:
type: string