From 97f65ca420e95a9ee0f638776bd7ffb6b814024e Mon Sep 17 00:00:00 2001
From: Trevor Judice <tjudice@gfxlabs.io>
Date: Mon, 24 Jul 2023 18:15:21 +0000
Subject: [PATCH] Social Fields

---
 contrib/openrpc/types/types.go | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/contrib/openrpc/types/types.go b/contrib/openrpc/types/types.go
index 325652c..ae5a88d 100644
--- a/contrib/openrpc/types/types.go
+++ b/contrib/openrpc/types/types.go
@@ -26,10 +26,17 @@ type ServerVariable struct {
 }
 
 type Info struct {
-	Title       string  `json:"title"`
-	Description string  `json:"description"`
-	Version     string  `json:"version"`
-	Contact     Contact `json:"contact,omitempty"`
+	Title       string        `json:"title"`
+	Description string        `json:"description"`
+	Version     string        `json:"version"`
+	Contact     Contact       `json:"contact,omitempty"`
+	Socials     []*SocialInfo `json:"x-social,omitempty"`
+}
+
+type SocialInfo struct {
+	Name  string `json:"name"`
+	URL   string `json:"url"`
+	Color string `json:"color"`
 }
 
 type Contact struct {
-- 
GitLab