OpenAPI Specification: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 16: | Line 16: | ||
==x-nullable== | ==x-nullable== | ||
Appears in automatically generated Swagger files, as such: | |||
definitions: | |||
LibraryAccount: | |||
type: object | |||
required: | |||
- name | |||
properties: | |||
name: | |||
type: string | |||
'''x-nullable''': '''true''' |
Revision as of 16:07, 22 March 2019
Internal
Overview
The document addresses both OpenAPI 2.0 and OpenAPI 3.0. The differences will be emphasized.
info
title
When imported in AWS API Gateway, the title provides the API name.
Organizatorium
x-nullable
Appears in automatically generated Swagger files, as such:
definitions: LibraryAccount: type: object required: - name properties: name: type: string x-nullable: true