openapi: 3.0.0
info:
  version: 1.0.0
  title: RBKmoney {{sentenceCase name}} API
  description:
    $ref: './docs/api.md'
  termsOfService: http://rbk.money/
  contact:
    name: RBKmoney support team
    email: support@rbk.money
    url: 'https://developer.rbk.money'
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: 'https://{subdomain}.rbk.money/{{kebabCase name}}/{version}'
    variables:
      subdomain:
        default: api
      version:
        enum:
          - v1
        default: v1
security:
  - bearer: []
components:
  securitySchemes:
    bearer:
      $ref: './components/security-schemes/Bearer.yaml'
