-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathquartz-oem.yml
69 lines (69 loc) · 1.94 KB
/
quartz-oem.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
openapi: '3.0.0'
info:
title: QuartzPublicAPI
version: 0.1.0
license:
name: MIT
url: 'https://opensource.org/licenses/MIT'
servers:
- url: /api/v2
security:
- bearerAuth: []
paths:
'/orgs':
$ref: './quartz/paths/orgs.yml'
'/orgs/{orgID}':
$ref: './quartz/paths/org.yml'
'/orgs/{orgID}/limits':
$ref: './quartz/paths/orgLimits.yml'
'/orgs/{orgId}/users':
$ref: './quartz/paths/orgUsers.yml'
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
schemas:
BucketLimits:
$ref: './quartz/schemas/BucketLimits.yml'
CheckLimits:
$ref: './quartz/schemas/CheckLimits.yml'
DashboardLimits:
$ref: './quartz/schemas/DashboardLimits.yml'
Error:
$ref: './common/schemas/Error.yml'
Limit:
$ref: './quartz/schemas/Limit.yml'
NotificationEndpointLimits:
$ref: './quartz/schemas/NotificationEndpointLimits.yml'
NotificationRuleLimits:
$ref: './quartz/schemas/NotificationRuleLimits.yml'
OEMInvitedEmail:
$ref: './quartz/schemas/OEMInvitedEmail.yml'
OEMInvitedError:
$ref: './quartz/schemas/OEMInvitedError.yml'
OEMInvitedResponse:
$ref: './quartz/schemas/OEMInvitedResponse.yml'
OrganizationRequest:
$ref: './quartz/schemas/OrganizationRequest.yml'
OrganizationWithToken:
$ref: './quartz/schemas/OrganizationWithToken.yml'
Organization:
$ref: './quartz/schemas/Organization.yml'
Organizations:
$ref: './quartz/schemas/Organizations.yml'
OrgLimits:
$ref: './quartz/schemas/OrgLimits.yml'
RateLimits:
$ref: './quartz/schemas/RateLimits.yml'
RestrictedLimit:
$ref: './quartz/schemas/RestrictedLimit.yml'
TaskLimits:
$ref: './quartz/schemas/TaskLimits.yml'
Unlimited:
$ref: './quartz/schemas/Unlimited.yml'
responses:
NoContent:
$ref: './common/responses/NoContent.yml'
ServerError:
$ref: './common/responses/ServerError.yml'