asyncapi: 2.2.0
info:
  title: Template Service
  version: '1.0.0'
  description: |
    Template Management
# AsyncAPI extension, used to define service id. If not defined, as service id will be used info.title in lower-kebab-case
x-service-id: ax-service-template

channels:
  # events
  'evt-channel':
    bindings:
      amqp:
        queue:
          name: example_event
    publish:
      message:
        $ref: '#/components/messages/event-ref'
components:
  messages:
    event-ref:
      contentType: application/json
      payload:
        $ref: 'moved-event.json'
