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:
Ben Halpern 2023-04-27 19:12:30 -04:00 committed by GitHub
parent e67454fa53
commit 6236d8ec69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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" }