mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-02 10:58:10 -05:00
30 lines
467 B
JSON
30 lines
467 B
JSON
{
|
|
"openapi": "3.0.0",
|
|
"info": {
|
|
"title": "Compass API",
|
|
"version": "1.0.0"
|
|
},
|
|
"paths": {
|
|
"/health": {
|
|
"get": {
|
|
"summary": "Health",
|
|
"responses": {
|
|
"200": {
|
|
"description": "OK"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/get-profiles": {
|
|
"get": {
|
|
"summary": "List profiles",
|
|
"responses": {
|
|
"200": {
|
|
"description": "OK"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|