From 6236d8ec69d0f1fcbbc75b21acd81fea562f1c83 Mon Sep 17 00:00:00 2001 From: Ben Halpern Date: Thu, 27 Apr 2023 19:12:30 -0400 Subject: [PATCH] Change :url to "url" in openapi.yml (#19398) * Add quotes around url in openapi.yml * Change :url to url with quotes --- public/openapi.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/openapi.yml b/public/openapi.yml index db27fa569..30db27ede 100644 --- a/public/openapi.yml +++ b/public/openapi.yml @@ -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" }