You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: versions/3.1.0.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -211,7 +211,8 @@ The metadata MAY be used by the clients if needed, and MAY be presented in editi
211
211
Field Name | Type | Description
212
212
---|:---:|---
213
213
<aname="infoTitle"></a>title | `string` | **REQUIRED**. The title of the application.
214
-
<aname="infoDescription"></a>description | `string` | A short description of the application. [CommonMark syntax](http://spec.commonmark.org/) MAY be used for rich text representation.
214
+
<aname="infoSummary"></a>summary | `string` | A short summary of the application.
215
+
<aname="infoDescription"></a>description | `string` | A verbose explanation of the application. [CommonMark syntax](http://spec.commonmark.org/) MAY be used for rich text representation.
215
216
<aname="infoTermsOfService"></a>termsOfService | `string` | A URL to the Terms of Service for the API. MUST be in the format of a URL.
216
217
<aname="infoContact"></a>contact | [Contact Object](#contactObject) | The contact information for the exposed API.
217
218
<aname="infoLicense"></a>license | [License Object](#licenseObject) | The license information for the exposed API.
@@ -225,6 +226,7 @@ This object MAY be extended with [Specification Extensions](#specificationExtens
225
226
```json
226
227
{
227
228
"title": "Sample Pet Store App",
229
+
"summary": "A pet store manager.",
228
230
"description": "This is a sample server for a pet store.",
229
231
"termsOfService": "http://example.com/terms/",
230
232
"contact": {
@@ -242,6 +244,7 @@ This object MAY be extended with [Specification Extensions](#specificationExtens
242
244
243
245
```yaml
244
246
title: Sample Pet Store App
247
+
summary: A pet store manager.
245
248
description: This is a sample server for a pet store.
0 commit comments