swagger: "2.0" info: version: '1.0' title: httpbin description: Test Enum autocomplete in SmartDocs host: httpbin.org basePath: / schemes: - https paths: /post: post: consumes: - application/json produces: - application/json parameters: - in: body name: body schema: $ref: '#/definitions/User' responses: '200': description: OK definitions: User: type: object properties: division: type: array items: type: string enum: - HR - Engineering - Accounting name: type: string # Both properties are required required: - division - name