-
Notifications
You must be signed in to change notification settings - Fork 0
/
acl-service-api-docs.yaml
59 lines (59 loc) · 1.31 KB
/
acl-service-api-docs.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
openapi: 3.0.1
info:
title: acl-service
description: API 명세
contact:
name: kimdoyeob
url: https://github.com/KalGookSoo/springboot-msa
email: [email protected]
license:
name: Apache 2.0
url: http://springdoc.org
version: 1.0.0
servers:
- url: http://127.0.0.1:8089
description: Generated server url
tags:
- name: AclRestController
description: 접근제어목록 API
paths:
/acl:
post:
tags:
- AclRestController
operationId: createAclEntry
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateAclEntryCommand'
required: true
responses:
"200":
description: OK
content:
'*/*':
schema:
type: object
components:
schemas:
CreateAclEntryCommand:
required:
- className
- identifier
- mask
- principal
type: object
properties:
className:
type: string
identifier:
pattern: "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$"
type: string
principal:
type: string
mask:
maximum: 16
minimum: 1
type: integer
format: int32