{
"openapi": "3.1.0",
"info": {
"title": "",
"version": "version not set"
},
"paths": {
"/v1/admin/signer": {
"post": {
"tags": [
"SignerManagerService"
],
"operationId": "SignerManagerService_LoadSigner",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LoadSignerRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "a successful response.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LoadSignerResponse"
}
}
}
},
"default": {
"description": "An unexpected error response.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Status"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"Any": {
"type": "object",
"description": "Any contains an arbitrary schema along with a URL to help identify the type of the schema.",
"properties": {
"@type": {
"type": "string",
"description": "A URL/resource name that uniquely identifies the type of the schema."
}
}
},
"LoadSignerRequest": {
"title": "LoadSignerRequest",
"type": "object",
"properties": {
"signerPrivateKey": {
"type": "string"
},
"signerUrl": {
"type": "string"
}
}
},
"LoadSignerResponse": {
"title": "LoadSignerResponse",
"type": "object"
},
"Status": {
"title": "Status",
"type": "object",
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Any"
}
},
"message": {
"type": "string"
}
}
}
}
},
"tags": [
{
"name": "SignerManagerService"
}
]
}