# notification

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    notification:
      type: object
      properties:
        command:
          type: string
          title: title test
          examples:
            - sddsds
          description: The command triggering the update.
        data:
          type: object
          properties: {}
          x-apidog-orders: []
          description: Data elements updated.
        instance:
          $ref: '#/components/schemas/instance%20-%20single'
          description: Instance index (0-254) the update happend to.
      required:
        - command
        - data
        - instance
      x-apidog-orders:
        - command
        - data
        - instance
      x-apidog-folder: ''
    instance - single:
      type: integer
      minimum: 0
      maximum: 254
      description: Instance index (0-254) to which the command applies.
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: http://{{host}}:8090
    description: Develop Env
  - url: https://{{host}}:8092
    description: Testing Env
security: []

```
