Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NOISSUE - Update OPENAPI Files #1832

Merged
merged 7 commits into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions api/openapi/bootstrap.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,28 @@
openapi: 3.0.1
info:
title: Mainflux Bootstrap service
description: HTTP API for managing platform things configuration.
version: "1.0.0"
description: |
HTTP API for managing platform things configuration.
Some useful links:
- [The Mainflux repository](https://github.com/mainflux/mainflux)
contact:
email: info@mainflux.com
license:
name: Apache 2.0
url: https://github.com/mainflux/mainflux/blob/master/LICENSE
version: 0.14.0

servers:
- url: http://localhost:9013
- url: https://localhost:9013

tags:
- name: configs
description: Everything about your Configs
externalDocs:
description: Find out more about Configs
url: http://docs.mainflux.io/

paths:
/things/configs:
post:
Expand Down
23 changes: 21 additions & 2 deletions api/openapi/certs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,27 @@
openapi: 3.0.1
info:
title: Mainflux Certs service
description: HTTP API for Certs service
version: "1.0.0"
description: |
HTTP API for Certs service
Some useful links:
- [The Mainflux repository](https://github.com/mainflux/mainflux)
contact:
email: info@mainflux.com
license:
name: Apache 2.0
url: https://github.com/mainflux/mainflux/blob/master/LICENSE
version: 0.14.0

servers:
- url: http://localhost:9019
- url: https://localhost:9019

tags:
- name: certs
description: Everything about your Certs
externalDocs:
description: Find out more about certs
url: http://docs.mainflux.io/

paths:
/certs:
Expand Down
26 changes: 24 additions & 2 deletions api/openapi/consumers-notifiers.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
openapi: 3.0.1
info:
title: Mainflux Notifiers service
description: HTTP API for Notifiers service.
version: "1.0.0"
description: |
HTTP API for Notifiers service.
Some useful links:
- [The Mainflux repository](https://github.com/mainflux/mainflux)
contact:
email: info@mainflux.com
license:
name: Apache 2.0
url: https://github.com/mainflux/mainflux/blob/master/LICENSE
version: 0.14.0

servers:
- url: http://localhost:9014
- url: https://localhost:9014
- url: http://localhost:9015
- url: https://localhost:9015

tags:
- name: notifiers
description: Everything about your Notifiers
externalDocs:
description: Find out more about notifiers
url: http://docs.mainflux.io/

paths:
/subscriptions:
post:
Expand Down
24 changes: 22 additions & 2 deletions api/openapi/http.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,28 @@
openapi: 3.0.1
info:
title: Mainflux http adapter
description: HTTP API for sending messages through communication channels.
version: "1.0.0"
description: |
HTTP API for sending messages through communication channels.
Some useful links:
- [The Mainflux repository](https://github.com/mainflux/mainflux)
contact:
email: info@mainflux.com
license:
name: Apache 2.0
url: https://github.com/mainflux/mainflux/blob/master/LICENSE
version: 0.14.0

servers:
- url: http://localhost:8008
- url: https://localhost:8008

tags:
- name: messages
description: Everything about your Messages
externalDocs:
description: Find out more about messages
url: http://docs.mainflux.io/

paths:
/channels/{id}/messages:
post:
Expand Down
23 changes: 21 additions & 2 deletions api/openapi/provision.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,27 @@
openapi: 3.0.1
info:
title: Mainflux Provision service
description: HTTP API for Provision service
version: "1.0.0"
description: |
HTTP API for Provision service
Some useful links:
- [The Mainflux repository](https://github.com/mainflux/mainflux)
contact:
email: info@mainflux.com
license:
name: Apache 2.0
url: https://github.com/mainflux/mainflux/blob/master/LICENSE
version: 0.14.0

servers:
- url: http://localhost:9016
- url: https://localhost:9016

tags:
- name: provision
description: Everything about your Provision
externalDocs:
description: Find out more about provision
url: http://docs.mainflux.io/

paths:
/mapping:
Expand Down
33 changes: 30 additions & 3 deletions api/openapi/readers.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,35 @@
openapi: 3.0.1
info:
title: Mainflux reader service
description: HTTP API for reading messages.
version: "1.0.0"
description: |
HTTP API for reading messages.
Some useful links:
- [The Mainflux repository](https://github.com/mainflux/mainflux)
contact:
email: info@mainflux.com
license:
name: Apache 2.0
url: https://github.com/mainflux/mainflux/blob/master/LICENSE
version: 0.14.0

servers:
- url: http://localhost:9003
- url: https://localhost:9003
- url: http://localhost:9005
- url: https://localhost:9005
- url: http://localhost:9007
- url: https://localhost:9007
- url: http://localhost:9009
- url: https://localhost:9009
- url: http://localhost:9011
- url: https://localhost:9011

tags:
- name: readers
description: Everything about your Readers
externalDocs:
description: Find out more about readers
url: http://docs.mainflux.io/

paths:
/channels/{chanId}/messages:
Expand All @@ -14,7 +41,7 @@ paths:
ensure that the entire dataset is consumed either by making subsequent
requests, or by increasing the subset size of the initial request.
tags:
- messages
- readers
parameters:
- $ref: "#/components/parameters/ChanId"
- $ref: "#/components/parameters/Limit"
Expand Down
Loading
Loading