This commit is contained in:
Troy Taylor 2022-01-28 08:52:21 -05:00 коммит произвёл GitHub
Родитель 211f0f5fa8
Коммит 96b37fd691
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 97 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,70 @@
{
"swagger": "2.0",
"info": {
"title": "Michael Scott Quotes",
"description": "A simple REST API that returns a random Michael Scott quote. Voted Scranton's Best Boss. \"You miss 100% of the shots you don't take.\" - Wayne Gretzky",
"version": "1.0",
"contact": {
"name": "Troy Taylor",
"url": "https://www.hitachisolutions.com",
"email": "ttaylor@hitachisolutions.com"
}
},
"host": "michael-scott-quotes.herokuapp.com",
"basePath": "/",
"schemes": [
"https"
],
"consumes": [],
"produces": [],
"paths": {
"/quote": {
"get": {
"responses": {
"200": {
"description": "default",
"schema": {
"type": "object",
"properties": {
"quote": {
"type": "string",
"description": "The quote.",
"title": "Quote"
},
"author": {
"type": "string",
"description": "The Office character.",
"title": "Character"
}
}
}
}
},
"summary": "Get a quote",
"description": "Returns a random Michael Scott quote.",
"operationId": "Quote",
"parameters": []
}
}
},
"definitions": {},
"parameters": {},
"responses": {},
"securityDefinitions": {},
"security": [],
"tags": [],
"x-ms-connector-metadata": [
{
"propertyName": "Website",
"propertyValue": "https://github.com/kbohinski/Michael-Scott-API"
},
{
"propertyName": "Privacy policy",
"propertyValue": "https://github.com/kbohinski/Michael-Scott-API"
},
{
"propertyName": "Categories",
"propertyValue": "Lifestyle and Entertainment"
}
]
}

Просмотреть файл

@ -0,0 +1,9 @@
{
"properties": {
"connectionParameters": {},
"iconBrandColor": "#da3b01",
"capabilities": [],
"publisher": "Troy Taylor",
"stackOwner": "Kevin Bohinski"
}
}

Просмотреть файл

@ -0,0 +1,18 @@
# Michael Scott Quotes
A simple REST API that returns a random Michael Scott quote. Voted Scranton's Best Boss. "You miss 100% of the shots you don't take." - Wayne Gretzky
## Publisher: Troy Taylor, Hitachi Solutions
## Prerequisites
There are no prerequisites for this connector.
## Obtaining Credentials
There are no credentials needed for this connector.
## Supported Operations
### Get a quote
Returns a random Michael Scott quote.
## Known Issues and Limitations
There are no known issues at this time.