Ron Swanson Quotes (Independent Publisher) (#1392)

* certify-connector

HubSpot CRM, CMS, and Marketing connectors

* certify-connector

Xero Accounting and Payroll connectors

* Revert "certify-connector"

This reverts commit 5fb06db7f3.

* Revert "certify-connector"

This reverts commit 160b208ed6.

* certify-connector

* certify-connector

* certify-connector

* Update apiDefinition.swagger.json

Fixed description

* Update apiDefinition.swagger.json

Cut to below 500

* Update apiDefinition.swagger.json

Cut to below 500.

* Delete icon.png

* Delete settings.json

* Update apiDefinition.swagger.json

* Delete independent-publisher-connectors/HubSpot CMS directory

* Delete independent-publisher-connectors/HubSpot CRM directory

* Delete independent-publisher-connectors/HubSpot Marketing directory

* Delete independent-publisher-connectors/Xero Accounting directory

* Delete independent-publisher-connectors/Xero Payroll - UK directory

* Delete independent-publisher-connectors/Xero Projects directory

* Include iconBrandColor #da3b01 for IP

* Include iconBrandColor #da3b01 in best practices

* Rename README.template.md to readme.md

* Add templates for IP

* Fix typo

* Add files via upload

* Delete Google Cloud Translation directory

* Add files via upload
This commit is contained in:
Troy Taylor 2022-04-26 13:15:36 -04:00 коммит произвёл GitHub
Родитель c2077ed824
Коммит d092a189dd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 150 добавлений и 0 удалений

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

@ -0,0 +1,120 @@
{
"swagger": "2.0",
"info": {
"title": "Ron Swanson Quotes",
"description": "Quotes for every occasion. Because Ron Swanson is a hero.",
"version": "1.0",
"contact": {
"name": "Troy Taylor",
"url": "https://www.hitachisolutions.com",
"email": "ttaylor@hitachisolutions.com"
}
},
"host": "ron-swanson-quotes.herokuapp.com",
"basePath": "/v2",
"schemes": [
"https"
],
"consumes": [],
"produces": [],
"paths": {
"/quotes": {
"get": {
"responses": {
"200": {
"description": "default",
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"summary": "Get a quote",
"description": "Returns an array with one quote.",
"operationId": "QuoteGet",
"parameters": []
}
},
"/quotes/{count}": {
"get": {
"responses": {
"200": {
"description": "default",
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"summary": "Get a number of quotes",
"description": "Returns an array with a count of quotes.",
"operationId": "Quotes",
"parameters": [
{
"name": "count",
"in": "path",
"x-ms-summary": "Count",
"x-ms-url-encoding": "single",
"description": "The count number requesting.",
"required": true,
"type": "integer",
"format": "int32"
}
]
}
},
"/quotes/search/{term}": {
"get": {
"responses": {
"200": {
"description": "default",
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"summary": "Search for a term",
"description": "Returns an array of quotes matching term without case sensitivity.",
"operationId": "Search",
"parameters": [
{
"name": "term",
"in": "path",
"x-ms-summary": "Term",
"x-ms-url-encoding": "single",
"description": "The search term.",
"required": true,
"type": "string"
}
]
}
}
},
"definitions": {},
"parameters": {},
"responses": {},
"securityDefinitions": {},
"security": [],
"tags": [],
"x-ms-connector-metadata": [
{
"propertyName": "Website",
"propertyValue": "https://github.com/jamesseanwright/ron-swanson-quotes"
},
{
"propertyName": "Privacy policy",
"propertyValue": "https://github.com/jamesseanwright/ron-swanson-quotes"
},
{
"propertyName": "Categories",
"propertyValue": "Lifestyle and Entertainment"
}
]
}

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

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

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

@ -0,0 +1,21 @@
# Ron Swanson Quotes
Quotes for every occasion. Because Ron Swanson is a hero.
## 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 an array with one quote.
### Get a number of quotes
Returns an array with a count of quotes.
### Search for a term
Returns an array of quotes matching term without case sensitivity.
## Known Issues and Limitations
There are no known issues at this time.