Hi Ben,

 

It looks like a bug.

Can you file a ticket on the issue please? If so, do it on swagger-ui as the 
issue is with the rendering and not the editor itself.

 

Thanks,

Ron

 

 

 

From: <swagger-swaggersocket@googlegroups.com> on behalf of Ben Sullivan 
<off...@bensullivan.net>
Reply-To: "swagger-swaggersocket@googlegroups.com" 
<swagger-swaggersocket@googlegroups.com>
Date: Thursday, 20 April 2017 at 12:19
To: Swagger <swagger-swaggersocket@googlegroups.com>
Subject: Swagger editor not displaying Composed Model Names Correctly

 

Hi everyone 

 

I have the following swagger spec:

 

swagger: '2.0'
info:
  title: 'Adviser Service'
  version: '1.0.0'
paths:
  /api/v1/advisers:
    post:
      description: Create an `Adviser`
      consumes:
        - application/vnd.api+json
      produces:
        - application/vnd.api+json
      parameters:
        - name: adviser
          in: body
          required: true
          schema:
            $ref: '#/definitions/CreateAdviser'
      responses:
        201:
          description: Created
          schema:
            $ref: '#/definitions/Adviser'
definitions:
  CreateAdviser:
    properties:
      data: 
        $ref: '#/definitions/CreateAdviserResource'
  CreateAdviserResource:
    allOf:
    - $ref: "#/definitions/AdviserResourceIdentifier"
    - type: object
      properties:
        attributes:
          $ref: '#/definitions/CreateAdviserResourceAttributes'
  AdviserResourceIdentifier:
    required:
      - id
      - type
    properties:
      id:
        type: string
      type:
        type: string
        enum:
          - advisers
  CreateAdviserResourceAttributes:
    properties:
      name:
        type: string
      description:
        type: string
      data:
        type: string
  AdviserResourceAttributes:
    properties:
      name:
        type: string
      description:
        type: string
  Adviser:
    properties:
      data:
        allOf:
        - $ref: '#/definitions/AdviserResourceIdentifier'
        - type: object
          properties:
            attributes:
              $ref: '#/definitions/AdviserResourceAttributes'

 

When I view this in editor.swagger.io, the CreateAdviserResource model name is 
not displayed in the Models section and instead AdviserResourceIdentifier is 
displayed as the model name alongside the AdviserResourceIdentifier model I am 
expecting.  The definition of the CreateAdviserResource model looks right, it's 
just it's name is incorrect (and duplicated).  All the other models look ok.

 

I'm not sure what I'm doing wrong.  Any hints would be much appreciated!

 

Many thanks


Ben

-- 
You received this message because you are subscribed to the Google Groups 
"Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to swagger-swaggersocket+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups 
"Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to swagger-swaggersocket+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to