definitions:
  Foo:
    properties:
      bar: {}
    type: object
  OtherBar:
    properties:
      other:
        type: string
    type: object
  SomeBar:
    type: string
info:
  title: test
  version: 0.0.1
paths:
  /foo:
    get:
      operationId: getFoo
      parameters: []
      produces:
        - application/hal+json
      responses:
        '200':
          description: Foo
          schema:
            $ref: '#/definitions/Foo'
      tags:
        - Foos
swagger: '2.0'
x-components: {}

