Change :url to "url" in openapi.yml (#19398)
* Add quotes around url in openapi.yml * Change :url to url with quotes
This commit is contained in:
parent
e67454fa53
commit
6236d8ec69
1 changed files with 3 additions and 3 deletions
|
|
@ -97,7 +97,7 @@ components:
|
|||
username: { type: "string" }
|
||||
twitter_username: { type: "string", nullable: true }
|
||||
github_username: { type: "string", nullable: true }
|
||||
website_url: { type: "string", format: :url, nullable: true }
|
||||
website_url: { type: "string", format: "url", nullable: true }
|
||||
profile_image: { description: "Profile image (640x640)", type: "string" }
|
||||
profile_image_90: { description: "Profile image (90x90)", type: "string" }
|
||||
SharedOrganization:
|
||||
|
|
@ -107,6 +107,6 @@ components:
|
|||
name: { type: "string" }
|
||||
username: { type: "string" }
|
||||
slug: { type: "string" }
|
||||
profile_image: { description: "Profile image (640x640)", type: "string", format: :url }
|
||||
profile_image_90: { description: "Profile image (90x90)", type: "string", format: :url }
|
||||
profile_image: { description: "Profile image (640x640)", type: "string", format: "url" }
|
||||
profile_image_90: { description: "Profile image (90x90)", type: "string", format: "url" }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue