-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.json
79 lines (79 loc) · 2.99 KB
/
swagger.json
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
{
"swagger": "2.0",
"info": {
"description": "RestAPI for the Domain Object\n![Release](https://img.shields.io/github/v/release/ortelius/scec-domain?sort=semver)\n![license](https://img.shields.io/github/license/ortelius/.github)\n\n![Build](https://img.shields.io/github/actions/workflow/status/ortelius/scec-domain/build-push-chart.yml)\n[![MegaLinter](https://github.com/ortelius/scec-domain/workflows/MegaLinter/badge.svg?branch=main)](https://github.com/ortelius/scec-domain/actions?query=workflow%3AMegaLinter+branch%3Amain)\n![CodeQL](https://github.com/ortelius/scec-domain/workflows/CodeQL/badge.svg)\n[![OpenSSF-Scorecard](https://api.securityscorecards.dev/projects/github.com/ortelius/scec-domain/badge)](https://api.securityscorecards.dev/projects/github.com/ortelius/scec-domain)\n\n![Discord](https://img.shields.io/discord/722468819091849316)",
"title": "Ortelius v11 Domain Microservice",
"termsOfService": "http://swagger.io/terms/",
"contact": {
"name": "Ortelius Google Group",
"email": "[email protected]"
},
"license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"version": "11.0.0"
},
"host": "localhost:8080",
"basePath": "/msapi/domain",
"paths": {
"/msapi/domain": {
"get": {
"description": "Get a list of domains for the user.",
"consumes": [
"*/*"
],
"produces": [
"application/json"
],
"tags": [
"domain"
],
"summary": "Get a List of Domains",
"responses": {
"200": {
"description": "OK"
}
}
},
"post": {
"description": "Create a new Domain and persist it",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"domain"
],
"summary": "Create a Domain",
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/msapi/domain/:key": {
"get": {
"description": "Get a domain based on the _key or name.",
"consumes": [
"*/*"
],
"produces": [
"application/json"
],
"tags": [
"domain"
],
"summary": "Get a Domain",
"responses": {
"200": {
"description": "OK"
}
}
}
}
}
}