swagger: "2.0" info: version: 1.0.0 title: Simple API description: A simple API to learn how to write OpenAPI Specification schemes: - https host: simple.api basePath: /openapi101 paths: /persons: get: summary: Gets some persons description: Returns a list containing all persons. The list supports paging. parameters: - name: pageSize in: query description: Number of persons returned type: integer - name: pageNumber in: query description: Page number type: integer responses: 200: description: A list of Person schema: $ref: "#/definitions/Persons" 500: $ref: "#/responses/Standard500ErrorResponse" post: summary: Creates a person description: Adds a new person to the persons list. parameters: - name: person in: body description: The person to create. schema: $ref: "#/definitions/Person" responses: 204: description: Person succesfully created. 400: description: Person couldn't have been created. 500: $ref: "#/responses/Standard500ErrorResponse" /persons/{username}: get: summary: Gets a person description: Returns a single person for its username. parameters: - name: username in: path required: true description: The person's username type: string responses: 200: description: A Person schema: $ref: "#/definitions/Person" 404: $ref: "#/responses/PersonDoesNotExistResponse" 500: $ref: "#/responses/Standard500ErrorResponse" delete: summary: Deletes a person description: Delete a single person identified via its username parameters: - name: username in: path required: true description: The person's username type: string responses: 204: description: Person successfully deleted. 404: $ref: "#/responses/PersonDoesNotExistResponse" 500: $ref: "#/responses/Standard500ErrorResponse" definitions: Person: required: - username properties: firstName: type: string lastName: type: string username: type: string Persons: type: array items: $ref: "#/definitions/Person" Error: required: - code - message properties: code: type: string message: type: string responses: Standard500ErrorResponse: description: An unexpected error occured. schema: $ref: "#/definitions/Error" PersonDoesNotExistResponse: description: Person does not exist.