您好,我正在使用swagger 3.0.0。操作oneOf也不在这里工作?错在哪里?

时间:2017-08-31 06:53:11

标签: swagger swagger-ui swagger-editor openapi

这是代码。当我写allOF而不是oneOF然后一切都好,但是有一个它没有显示任何东西而且没有错误。我写错了或者它仍然无法在swagger 3.0中工作.0。还有什么不是woking.Or我们有没有像一个但是在swagger 2.0

openapi: 3.0.0
servers:
  - url: 'http://petstore.swagger.io/v2'
x-origin:
  - url: 'http://petstore.swagger.io/v2/swagger.json'
    format: swagger
    version: '2.0'
    converter:
      url: 'https://github.com/mermade/swagger2openapi'
      version: 2.2.0
info:
  description: 'This is a sample.'
  version: 1.0.0
  title: Swagger Petstore
  termsOfService: 'http://swagger.io/terms/'
  contact:
    email: apiteam@swagger.io
  license:
    name: Apache 2.0
    url: 'http://www.apache.org/licenses/LICENSE-2.0.html'
tags:
  - name: pet
    description: Everything about your Pets
    externalDocs:
      description: Find out more
      url: 'http://swagger.io'
  - name: store
    description: Access to Petstore orders
  - name: user
    description: Operations about user
    externalDocs:
      description: Find out more about our store
      url: 'http://swagger.io'
paths:
  /something:
     post:
        requestBody:
         required: true
         content:
           application/json:
             schema:
               oneOf:
                 - $ref: '#/components/schemas/Dog'
                 - $ref: '#/components/schemas/Cat'
        responses:
          '200':
            description: Updated         
components:
  schemas:
    Dog:
      type: object
      properties:
        bark:
          type: boolean
        breed:
          type: string
          enum: [Dingo, Husky, Retriever, Shepherd]
    Cat:
      type: object
      properties:
        hunts:
          type: boolean
        age:
          type: integer

1 个答案:

答案 0 :(得分:0)

swagger-ui-express 4.1.12不支持任何一个版本

openapi: 3.0.1
tags:
  - name: API Specification
    description: All endpoints and payloads about Project
paths:
  /pets:
    patch:
      requestBody:
        content:
          application/json:
            schema:
                - $ref: '#/components/schemas/Cat'
                - $ref: '#/components/schemas/Dog'

      responses:
        '200':
          description: Updated
components:
  schemas:
    Dog:
      type: object
      properties:
        bark:
          type: boolean
        breed:
          type: string
          enum: [Dingo, Husky, Retriever, Shepherd]
    Cat:
      type: object
      properties:
        hunts:
          type: boolean
        age:
          type: integer