diff --git a/check/asyncapi.md b/check/asyncapi.md deleted file mode 100644 index 24cb0d3bec0..00000000000 --- a/check/asyncapi.md +++ /dev/null @@ -1,3 +0,0 @@ -This is a markdown file for my application. -App name is: **Streetlights API V2** -Version running on mode diff --git a/check/asyncapi.yaml b/check/asyncapi.yaml deleted file mode 100644 index 024e4617388..00000000000 --- a/check/asyncapi.yaml +++ /dev/null @@ -1,54 +0,0 @@ -asyncapi: "2.1.0" -info: - title: Streetlights API V2 - version: "1.0.0" - description: | - The Smartylighting Streetlights API allows you - to remotely manage the city lights. - license: - name: Apache 2.0 - url: "https://www.apache.org/licenses/LICENSE-2.0" -servers: - mosquitto: - url: http://test.mosquitto.org - protocol: http -channels: - user/signedup: - subscribe: - message: - $ref: "#/components/messages/UserSignedUp" - light/measured: - publish: - summary: Inform about environmental lighting conditions for a particular streetlight. - operationId: onLightMeasured - message: - name: LightMeasured - payload: - type: object - properties: - id: - type: integer - minimum: 1 - description: Id of the streetlight. - lumens: - type: integer - minimum: 0 - description: Light intensity measured in lumens. - sentAt: - type: string - format: date-time - description: Date and time when the message was sent. - -components: - messages: - UserSignedUp: - payload: - type: object - properties: - displayName: - type: string - description: Name of the user - email: - type: string - format: email - description: Email of the user