zrok/rest_server_zrok/embedded_spec.go

1225 lines
25 KiB
Go
Raw Normal View History

2022-07-22 16:52:36 +02:00
// Code generated by go-swagger; DO NOT EDIT.
package rest_server_zrok
2022-07-22 16:52:36 +02:00
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"encoding/json"
)
var (
// SwaggerJSON embedded version of the swagger document used at generation time
SwaggerJSON json.RawMessage
// FlatSwaggerJSON embedded flattened version of the swagger document used at generation time
FlatSwaggerJSON json.RawMessage
)
func init() {
SwaggerJSON = json.RawMessage([]byte(`{
"consumes": [
2022-07-22 17:45:37 +02:00
"application/zrok.v1+json"
2022-07-22 16:52:36 +02:00
],
"produces": [
2022-07-22 17:45:37 +02:00
"application/zrok.v1+json"
2022-07-22 16:52:36 +02:00
],
"schemes": [
"http"
],
"swagger": "2.0",
"info": {
"description": "zrok client access",
"title": "zrok",
2022-07-22 16:52:36 +02:00
"version": "1.0.0"
},
"basePath": "/api/v1",
2022-07-22 16:52:36 +02:00
"paths": {
"/account": {
"post": {
"tags": [
"identity"
],
"operationId": "createAccount",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/accountRequest"
}
}
],
"responses": {
"201": {
"description": "account created"
2022-07-25 22:23:55 +02:00
},
"400": {
2022-07-27 19:38:35 +02:00
"description": "account not created (already exists)",
"schema": {
"$ref": "#/definitions/errorMessage"
}
2022-07-25 22:23:55 +02:00
},
"500": {
2022-07-27 19:38:35 +02:00
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
}
}
}
2022-07-25 17:51:23 +02:00
},
"/disable": {
"post": {
"security": [
{
"key": []
}
],
"tags": [
"identity"
],
"operationId": "disable",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/disableRequest"
}
}
],
"responses": {
"200": {
"description": "environment disabled"
},
"401": {
"description": "invalid environment"
},
"500": {
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
}
}
}
},
2022-07-25 23:05:44 +02:00
"/enable": {
"post": {
"security": [
{
"key": []
}
],
2022-07-25 23:05:44 +02:00
"tags": [
"identity"
],
"operationId": "enable",
2022-08-03 20:25:27 +02:00
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/enableRequest"
}
}
],
2022-07-25 23:05:44 +02:00
"responses": {
"201": {
"description": "environment enabled",
"schema": {
"$ref": "#/definitions/enableResponse"
}
},
2022-07-27 20:50:46 +02:00
"401": {
"description": "invalid api key"
},
"404": {
"description": "account not found"
},
2022-07-25 23:05:44 +02:00
"500": {
2022-07-27 19:38:35 +02:00
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
2022-07-25 23:05:44 +02:00
}
}
}
},
2022-08-02 19:23:31 +02:00
"/login": {
"post": {
"tags": [
"identity"
],
"operationId": "login",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/loginRequest"
}
}
],
"responses": {
"200": {
"description": "login successful",
"schema": {
"$ref": "#/definitions/loginResponse"
}
},
"401": {
"description": "invalid login"
}
}
}
},
2022-08-03 20:36:40 +02:00
"/overview": {
"get": {
2022-08-03 20:58:11 +02:00
"security": [
{
"key": []
}
],
2022-08-03 20:36:40 +02:00
"tags": [
"metadata"
],
"operationId": "overview",
"responses": {
"200": {
"description": "overview returned",
"schema": {
2022-08-03 21:05:28 +02:00
"$ref": "#/definitions/environmentServicesList"
2022-08-03 20:36:40 +02:00
}
},
"500": {
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
}
}
}
},
2022-09-20 19:42:34 +02:00
"/register": {
"post": {
"tags": [
"identity"
],
"operationId": "register",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/registerRequest"
}
}
],
"responses": {
"200": {
"description": "account created",
"schema": {
"$ref": "#/definitions/registerResponse"
}
2022-09-20 19:42:34 +02:00
},
"404": {
"description": "request not found"
},
"500": {
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
}
}
}
},
2022-07-26 21:38:35 +02:00
"/tunnel": {
"post": {
"security": [
{
"key": []
}
],
2022-07-26 21:38:35 +02:00
"tags": [
"tunnel"
],
"operationId": "tunnel",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/tunnelRequest"
}
}
],
"responses": {
"201": {
"description": "tunnel created",
"schema": {
"$ref": "#/definitions/tunnelResponse"
}
2022-07-27 19:17:47 +02:00
},
2022-08-01 21:44:26 +02:00
"401": {
"description": "invalid environment identity",
"schema": {
"$ref": "#/definitions/errorMessage"
}
},
2022-07-27 19:17:47 +02:00
"500": {
2022-07-27 19:38:35 +02:00
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
2022-07-26 21:38:35 +02:00
}
}
}
},
2022-07-27 17:35:28 +02:00
"/untunnel": {
"delete": {
"security": [
{
"key": []
}
],
2022-07-27 17:35:28 +02:00
"tags": [
"tunnel"
],
"operationId": "untunnel",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/untunnelRequest"
}
}
],
"responses": {
"200": {
"description": "tunnel removed"
},
2022-08-01 21:44:26 +02:00
"404": {
"description": "not found",
"schema": {
"$ref": "#/definitions/errorMessage"
}
},
2022-07-27 17:35:28 +02:00
"500": {
2022-07-27 19:38:35 +02:00
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
2022-07-27 17:35:28 +02:00
}
}
}
},
2022-09-19 21:58:52 +02:00
"/verify": {
2022-09-19 22:26:54 +02:00
"post": {
2022-09-19 21:58:52 +02:00
"tags": [
"identity"
],
"operationId": "verify",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/verifyRequest"
}
}
],
"responses": {
"200": {
"description": "token ready",
"schema": {
"$ref": "#/definitions/verifyResponse"
}
},
"404": {
"description": "token not found"
},
"500": {
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
}
}
}
},
2022-07-25 17:51:23 +02:00
"/version": {
"get": {
"tags": [
"metadata"
],
"operationId": "version",
"responses": {
"200": {
2022-09-19 21:58:52 +02:00
"description": "current server version",
2022-07-25 17:51:23 +02:00
"schema": {
"$ref": "#/definitions/version"
}
}
}
}
2022-07-22 16:52:36 +02:00
}
},
"definitions": {
"accountRequest": {
"type": "object",
"properties": {
2022-09-09 16:20:05 +02:00
"email": {
"type": "string"
2022-07-25 22:42:06 +02:00
}
}
},
"authUser": {
"type": "object",
"properties": {
"password": {
"type": "string"
},
"username": {
"type": "string"
}
}
},
"disableRequest": {
"type": "object",
"properties": {
"identity": {
"type": "string"
}
}
},
2022-08-03 20:25:27 +02:00
"enableRequest": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
}
}
},
2022-07-25 22:42:06 +02:00
"enableResponse": {
"type": "object",
"properties": {
"cfg": {
"type": "string"
},
2022-07-25 22:42:06 +02:00
"identity": {
"type": "string"
}
}
},
2022-08-03 17:54:11 +02:00
"environment": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
2022-08-03 19:48:17 +02:00
"address": {
"type": "string"
},
"createdAt": {
"type": "string"
},
2022-08-03 19:48:17 +02:00
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
2022-10-19 18:35:29 +02:00
"zId": {
"type": "string"
}
}
},
2022-08-03 20:36:40 +02:00
"environmentServices": {
"type": "object",
"properties": {
"environment": {
"$ref": "#/definitions/environment"
},
"services": {
"$ref": "#/definitions/services"
}
}
},
2022-08-03 21:05:28 +02:00
"environmentServicesList": {
"type": "array",
"items": {
"$ref": "#/definitions/environmentServices"
}
},
2022-08-03 17:54:11 +02:00
"environments": {
"type": "array",
"items": {
"$ref": "#/definitions/environment"
}
},
"errorMessage": {
"type": "string"
},
2022-08-02 19:23:31 +02:00
"loginRequest": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"password": {
"type": "string"
}
}
},
"loginResponse": {
"type": "string"
},
"principal": {
2022-07-28 18:12:50 +02:00
"type": "object",
"properties": {
2022-09-09 16:20:05 +02:00
"email": {
"type": "string"
},
2022-07-28 18:12:50 +02:00
"id": {
"type": "integer"
},
"token": {
"type": "string"
}
}
},
2022-09-20 19:42:34 +02:00
"registerRequest": {
"type": "object",
"properties": {
"password": {
"type": "string"
},
"token": {
"type": "string"
}
}
},
"registerResponse": {
"type": "object",
"properties": {
"token": {
"type": "string"
}
}
},
2022-08-03 20:36:40 +02:00
"service": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"backend": {
"type": "string"
},
2022-08-03 20:36:40 +02:00
"createdAt": {
"type": "string"
},
"frontend": {
2022-08-03 20:36:40 +02:00
"type": "string"
},
2022-10-19 18:35:29 +02:00
"name": {
2022-08-03 20:36:40 +02:00
"type": "string"
},
2022-10-19 18:35:29 +02:00
"updatedAt": {
2022-08-03 20:36:40 +02:00
"type": "string"
},
2022-10-19 18:35:29 +02:00
"zId": {
"type": "string"
2022-08-03 20:36:40 +02:00
}
}
},
"services": {
"type": "array",
"items": {
"$ref": "#/definitions/service"
}
},
2022-07-26 21:38:35 +02:00
"tunnelRequest": {
"type": "object",
"properties": {
"authScheme": {
"type": "string"
},
"authUsers": {
"type": "array",
"items": {
"$ref": "#/definitions/authUser"
}
},
2022-07-26 21:38:35 +02:00
"endpoint": {
"type": "string"
},
2022-10-19 18:35:29 +02:00
"zId": {
2022-07-26 21:38:35 +02:00
"type": "string"
}
}
},
"tunnelResponse": {
"type": "object",
"properties": {
"proxyEndpoint": {
"type": "string"
},
2022-10-19 18:35:29 +02:00
"svcName": {
2022-07-26 21:38:35 +02:00
"type": "string"
}
}
},
2022-07-27 17:35:28 +02:00
"untunnelRequest": {
"type": "object",
"properties": {
2022-10-19 18:35:29 +02:00
"svcName": {
2022-07-27 17:35:28 +02:00
"type": "string"
2022-08-03 20:58:11 +02:00
},
2022-10-19 18:35:29 +02:00
"zId": {
2022-08-03 20:58:11 +02:00
"type": "string"
2022-07-27 17:35:28 +02:00
}
}
},
2022-09-19 21:58:52 +02:00
"verifyRequest": {
"type": "object",
"properties": {
"token": {
"type": "string"
}
}
},
"verifyResponse": {
"type": "object",
"properties": {
"email": {
"type": "string"
}
}
},
2022-07-22 16:52:36 +02:00
"version": {
"type": "string"
}
},
"securityDefinitions": {
"key": {
"type": "apiKey",
"name": "x-token",
"in": "header"
2022-07-22 16:52:36 +02:00
}
}
}`))
FlatSwaggerJSON = json.RawMessage([]byte(`{
"consumes": [
2022-07-22 17:45:37 +02:00
"application/zrok.v1+json"
2022-07-22 16:52:36 +02:00
],
"produces": [
2022-07-22 17:45:37 +02:00
"application/zrok.v1+json"
2022-07-22 16:52:36 +02:00
],
"schemes": [
"http"
],
"swagger": "2.0",
"info": {
"description": "zrok client access",
"title": "zrok",
2022-07-22 16:52:36 +02:00
"version": "1.0.0"
},
"basePath": "/api/v1",
2022-07-22 16:52:36 +02:00
"paths": {
"/account": {
"post": {
"tags": [
"identity"
],
"operationId": "createAccount",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/accountRequest"
}
}
],
"responses": {
"201": {
"description": "account created"
2022-07-25 22:23:55 +02:00
},
"400": {
2022-07-27 19:38:35 +02:00
"description": "account not created (already exists)",
"schema": {
"$ref": "#/definitions/errorMessage"
}
2022-07-25 22:23:55 +02:00
},
"500": {
2022-07-27 19:38:35 +02:00
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
}
}
}
2022-07-25 17:51:23 +02:00
},
"/disable": {
"post": {
"security": [
{
"key": []
}
],
"tags": [
"identity"
],
"operationId": "disable",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/disableRequest"
}
}
],
"responses": {
"200": {
"description": "environment disabled"
},
"401": {
"description": "invalid environment"
},
"500": {
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
}
}
}
},
2022-07-25 23:05:44 +02:00
"/enable": {
"post": {
"security": [
{
"key": []
}
],
2022-07-25 23:05:44 +02:00
"tags": [
"identity"
],
"operationId": "enable",
2022-08-03 20:25:27 +02:00
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/enableRequest"
}
}
],
2022-07-25 23:05:44 +02:00
"responses": {
"201": {
"description": "environment enabled",
"schema": {
"$ref": "#/definitions/enableResponse"
}
},
2022-07-27 20:50:46 +02:00
"401": {
"description": "invalid api key"
},
"404": {
"description": "account not found"
},
2022-07-25 23:05:44 +02:00
"500": {
2022-07-27 19:38:35 +02:00
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
2022-07-25 23:05:44 +02:00
}
}
}
},
2022-08-02 19:23:31 +02:00
"/login": {
"post": {
"tags": [
"identity"
],
"operationId": "login",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/loginRequest"
}
}
],
"responses": {
"200": {
"description": "login successful",
"schema": {
"$ref": "#/definitions/loginResponse"
}
},
"401": {
"description": "invalid login"
}
}
}
},
2022-08-03 20:36:40 +02:00
"/overview": {
"get": {
2022-08-03 20:58:11 +02:00
"security": [
{
"key": []
}
],
2022-08-03 20:36:40 +02:00
"tags": [
"metadata"
],
"operationId": "overview",
"responses": {
"200": {
"description": "overview returned",
"schema": {
2022-08-03 21:05:28 +02:00
"$ref": "#/definitions/environmentServicesList"
2022-08-03 20:36:40 +02:00
}
},
"500": {
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
}
}
}
},
2022-09-20 19:42:34 +02:00
"/register": {
"post": {
"tags": [
"identity"
],
"operationId": "register",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/registerRequest"
}
}
],
"responses": {
"200": {
"description": "account created",
"schema": {
"$ref": "#/definitions/registerResponse"
}
2022-09-20 19:42:34 +02:00
},
"404": {
"description": "request not found"
},
"500": {
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
}
}
}
},
2022-07-26 21:38:35 +02:00
"/tunnel": {
"post": {
"security": [
{
"key": []
}
],
2022-07-26 21:38:35 +02:00
"tags": [
"tunnel"
],
"operationId": "tunnel",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/tunnelRequest"
}
}
],
"responses": {
"201": {
"description": "tunnel created",
"schema": {
"$ref": "#/definitions/tunnelResponse"
}
2022-07-27 19:17:47 +02:00
},
2022-08-01 21:44:26 +02:00
"401": {
"description": "invalid environment identity",
"schema": {
"$ref": "#/definitions/errorMessage"
}
},
2022-07-27 19:17:47 +02:00
"500": {
2022-07-27 19:38:35 +02:00
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
2022-07-26 21:38:35 +02:00
}
}
}
},
2022-07-27 17:35:28 +02:00
"/untunnel": {
"delete": {
"security": [
{
"key": []
}
],
2022-07-27 17:35:28 +02:00
"tags": [
"tunnel"
],
"operationId": "untunnel",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/untunnelRequest"
}
}
],
"responses": {
"200": {
"description": "tunnel removed"
},
2022-08-01 21:44:26 +02:00
"404": {
"description": "not found",
"schema": {
"$ref": "#/definitions/errorMessage"
}
},
2022-07-27 17:35:28 +02:00
"500": {
2022-07-27 19:38:35 +02:00
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
2022-07-27 17:35:28 +02:00
}
}
}
},
2022-09-19 21:58:52 +02:00
"/verify": {
2022-09-19 22:26:54 +02:00
"post": {
2022-09-19 21:58:52 +02:00
"tags": [
"identity"
],
"operationId": "verify",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/verifyRequest"
}
}
],
"responses": {
"200": {
"description": "token ready",
"schema": {
"$ref": "#/definitions/verifyResponse"
}
},
"404": {
"description": "token not found"
},
"500": {
"description": "internal server error",
"schema": {
"$ref": "#/definitions/errorMessage"
}
}
}
}
},
2022-07-25 17:51:23 +02:00
"/version": {
"get": {
"tags": [
"metadata"
],
"operationId": "version",
"responses": {
"200": {
2022-09-19 21:58:52 +02:00
"description": "current server version",
2022-07-25 17:51:23 +02:00
"schema": {
"$ref": "#/definitions/version"
}
}
}
}
2022-07-22 16:52:36 +02:00
}
},
"definitions": {
"accountRequest": {
"type": "object",
"properties": {
2022-09-09 16:20:05 +02:00
"email": {
"type": "string"
2022-07-25 22:42:06 +02:00
}
}
},
"authUser": {
"type": "object",
"properties": {
"password": {
"type": "string"
},
"username": {
"type": "string"
}
}
},
"disableRequest": {
"type": "object",
"properties": {
"identity": {
"type": "string"
}
}
},
2022-08-03 20:25:27 +02:00
"enableRequest": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"host": {
"type": "string"
}
}
},
2022-07-25 22:42:06 +02:00
"enableResponse": {
"type": "object",
"properties": {
"cfg": {
"type": "string"
},
2022-07-25 22:42:06 +02:00
"identity": {
"type": "string"
}
}
},
2022-08-03 17:54:11 +02:00
"environment": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
2022-08-03 19:48:17 +02:00
"address": {
"type": "string"
},
"createdAt": {
"type": "string"
},
2022-08-03 19:48:17 +02:00
"description": {
"type": "string"
},
"host": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
2022-10-19 18:35:29 +02:00
"zId": {
"type": "string"
}
}
},
2022-08-03 20:36:40 +02:00
"environmentServices": {
"type": "object",
"properties": {
"environment": {
"$ref": "#/definitions/environment"
},
"services": {
"$ref": "#/definitions/services"
}
}
},
2022-08-03 21:05:28 +02:00
"environmentServicesList": {
"type": "array",
"items": {
"$ref": "#/definitions/environmentServices"
}
},
2022-08-03 17:54:11 +02:00
"environments": {
"type": "array",
"items": {
"$ref": "#/definitions/environment"
}
},
"errorMessage": {
"type": "string"
},
2022-08-02 19:23:31 +02:00
"loginRequest": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"password": {
"type": "string"
}
}
},
"loginResponse": {
"type": "string"
},
"principal": {
2022-07-28 18:12:50 +02:00
"type": "object",
"properties": {
2022-09-09 16:20:05 +02:00
"email": {
"type": "string"
},
2022-07-28 18:12:50 +02:00
"id": {
"type": "integer"
},
"token": {
"type": "string"
}
}
},
2022-09-20 19:42:34 +02:00
"registerRequest": {
"type": "object",
"properties": {
"password": {
"type": "string"
},
"token": {
"type": "string"
}
}
},
"registerResponse": {
"type": "object",
"properties": {
"token": {
"type": "string"
}
}
},
2022-08-03 20:36:40 +02:00
"service": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"backend": {
"type": "string"
},
2022-08-03 20:36:40 +02:00
"createdAt": {
"type": "string"
},
"frontend": {
2022-08-03 20:36:40 +02:00
"type": "string"
},
2022-10-19 18:35:29 +02:00
"name": {
2022-08-03 20:36:40 +02:00
"type": "string"
},
2022-10-19 18:35:29 +02:00
"updatedAt": {
2022-08-03 20:36:40 +02:00
"type": "string"
},
2022-10-19 18:35:29 +02:00
"zId": {
"type": "string"
2022-08-03 20:36:40 +02:00
}
}
},
"services": {
"type": "array",
"items": {
"$ref": "#/definitions/service"
}
},
2022-07-26 21:38:35 +02:00
"tunnelRequest": {
"type": "object",
"properties": {
"authScheme": {
"type": "string"
},
"authUsers": {
"type": "array",
"items": {
"$ref": "#/definitions/authUser"
}
},
2022-07-26 21:38:35 +02:00
"endpoint": {
"type": "string"
},
2022-10-19 18:35:29 +02:00
"zId": {
2022-07-26 21:38:35 +02:00
"type": "string"
}
}
},
"tunnelResponse": {
"type": "object",
"properties": {
"proxyEndpoint": {
"type": "string"
},
2022-10-19 18:35:29 +02:00
"svcName": {
2022-07-26 21:38:35 +02:00
"type": "string"
}
}
},
2022-07-27 17:35:28 +02:00
"untunnelRequest": {
"type": "object",
"properties": {
2022-10-19 18:35:29 +02:00
"svcName": {
2022-07-27 17:35:28 +02:00
"type": "string"
2022-08-03 20:58:11 +02:00
},
2022-10-19 18:35:29 +02:00
"zId": {
2022-08-03 20:58:11 +02:00
"type": "string"
2022-07-27 17:35:28 +02:00
}
}
},
2022-09-19 21:58:52 +02:00
"verifyRequest": {
"type": "object",
"properties": {
"token": {
"type": "string"
}
}
},
"verifyResponse": {
"type": "object",
"properties": {
"email": {
"type": "string"
}
}
},
2022-07-22 16:52:36 +02:00
"version": {
"type": "string"
}
},
"securityDefinitions": {
"key": {
"type": "apiKey",
"name": "x-token",
"in": "header"
2022-07-22 16:52:36 +02:00
}
}
}`))
}