-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathL4_SkillFlow.yml
130 lines (130 loc) · 2.81 KB
/
L4_SkillFlow.yml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
openapi: 3.0.0
info:
title: WxO L4
description: WxO L4 Services
version: 0.1.0
servers:
- url: https://wxo-l4-services.1d13bpwyy9q7.us-east.codeengine.appdomain.cloud
paths:
/customers:
get:
tags:
- Customers
summary: L4 list of customers
description: L4 list of customers
operationId: l4_customers
responses:
'200':
description: Customers with recent life events
content:
application/json:
schema:
$ref: '#/components/schemas/Customer_List'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
components:
schemas:
CreditRequest:
properties:
credit:
type: number
title: Credit
rate:
type: number
title: Rate
type: object
required:
- credit
- rate
title: CreditRequest
CreditResponse:
properties:
monthly:
type: number
title: Monthly
total:
type: number
title: Total
type: object
required:
- monthly
- total
title: CreditResponse
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
type: array
title: Detail
type: object
title: HTTPValidationError
ValidationError:
properties:
loc:
items:
anyOf:
- type: string
- type: integer
type: array
title: Location
msg:
type: string
title: Message
type:
type: string
title: Error Type
type: object
required:
- loc
- msg
- type
title: ValidationError
Customer:
properties:
name:
type: string
title: Name
age:
type: integer
title: Age
id:
type: string
title: Id
email:
type: string
title: Email
recent_change:
type: string
title: Recent Change
type: object
required:
- name
- age
- id
- email
- recent_change
title: Customer
Customer_List:
properties:
totalSize:
type: integer
title: Totalsize
records:
items:
$ref: '#/components/schemas/Customer'
type: array
title: Records
type: object
required:
- totalSize
- records
title: Customer_List
securitySchemes:
HTTPBasic:
type: http
scheme: basic