{"info":{"_postman_id":"1673fe27-22d3-47e0-a053-abd51b7ab156","name":"sasf","description":"<html><head></head><body><h2 id=\"introduction\">Introduction</h2>\n<p>The Nemo-Q REST API (Henceforth called “the API”) is based on a root path of<br><strong>https://[</strong><em><strong>your address</strong></em><strong>]/NQC/NQWebServices/</strong> which all API calls will be<br>based upon.</p>\n<h2 id=\"terminology\">Terminology</h2>\n<p>Nemo-Q uses certain terminology to specify what type of queueing information is being transferred. This terminology will be explained under this section. For those who are new to developing with REST API’s the terminology will be highlighted in <strong>bold</strong> throughout the document, so that you can search the internet for a suitable explanation.</p>\n<h2 id=\"nemo-q-terminology\">Nemo-Q terminology</h2>\n<p>The following terminology can be found in the responses from the API:</p>\n<p><em><strong>Unit Type</strong></em> – This refers to one of 3 types of queues. The “Servicetype” which refers to a service provided by your institution, such as “Customer Service” or “Loans”. The “Workstation Queue” which refers to a specific workstation. The “User queue” which refers to a queue where customers have to see a specific person to handle their issue.</p>\n<p><em><strong>Unit Number</strong></em> <em>–</em> The Unit Number is a numerical shorthand for subcategories within the Unit Types. For an example within your organization the “Customer Service” Service Type might have the numerical shorthand “1”. Workstation 2 would logically be named “2”. And “Bob Bobson” from the sales department might have the number 1.</p>\n<p><em><strong>Queue Type</strong></em> – Specifies if the queue is <em>main</em>, <em>secondary</em>, or <em>booked</em>. Where Main is the default queue when you take a ticket, Secondary means you have been transferred to another queue and Booked means that you have a booking rather than a drop-in number.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Unit Type</strong></th>\n<th><strong>Unit Number</strong></th>\n<th><strong>Queue Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1: Servicetype</td>\n<td>Servicetype ID</td>\n<td>1: Main Queue</td>\n</tr>\n<tr>\n<td>2: Cashier Queue</td>\n<td>Workstation ID</td>\n<td>2: Secondary Queue</td>\n</tr>\n<tr>\n<td>3: User Queue</td>\n<td>User ID</td>\n<td>3: Booked Queue</td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Printer Text Number</strong></em> – A numerical identifier which represents the text to be displayed on the ticket you are printing. This number comes from the setup done in the NQC Configuration software which powers much of our queue systems.</p>\n<p><em><strong>Printer Number</strong></em> <em>–</em> The numerical identifier given to a specific ticket-printer, as specified in the NQC/Engine software.</p>\n<p><em><strong>Logo</strong></em> <em>–</em> The numerical identifier given to a specific Logotype to be printed onto each ticket, as specified in the NQC software. This function depends on what printer the system is using.</p>\n<p><em><strong>Virtual Cashier</strong></em> <em>–</em> There are cases where a “Virtual Cashier” is used, such as when a cashier wants to call a customer to another workstation than the one, they are managing. A common setup is when customers are called to a display where other service personnel can help the customer.</p>\n<p><em><strong>Main Queue / Secondary Queue / Booked Queue</strong></em> – Let’s say a customer takes a ticket to see Customer Service, then Customer Service is their Main Queue. However, if it turns out that what they needed help with isn’t a Customer Service issue but rather an “Insurances” issue then the ticket could be forwarded to the “Insurances secondary queue” or to a cashier that work with “Insurances” or to a User that work with “Insurances”, I ticket that are send to another queue is always going to a “secondary” queue. A Booked Queue on the other hand is in parallel to the Main Queue but the person with a booked ticket has an appointed time. To prioritize booked customers with appointment times over regular customers the system needs to be set up to do so.</p>\n<p><em><strong>Ticket Number</strong></em> <em>–</em> A numerical value such as “505”.</p>\n<p><em><strong>Ticket Name</strong></em> <em>–</em> A value such as “B505”.</p>\n<p><em><strong>Lost Ticket</strong></em> <em>–</em> A ticket can either be manually<br>set to lost or the system can be configured to automatically set a ticket to lost if the service time is shorter than X time units.</p>\n<h2 id=\"getting-started\">Getting started</h2>\n<p>When working with the API the typical workflow is as follows:</p>\n<ol>\n<li><p>Get the GUID for the office you are working with</p>\n</li>\n<li><p>Get a JSON Web Token</p>\n</li>\n<li><p>Make a call to the webservice to get the information you need</p>\n</li>\n</ol>\n<p><strong>Authenticating for branch-specific requests</strong></p>\n<p>All requests that interact with a branch’s queueing engine require the API client to acquire a JSON Web Token (JWT) to do this. This token is secured and locked to the branch, and like all JWTs it has a set time during which it is valid. After the token has expired, a new token must be acquired.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"6159398","collectionId":"1673fe27-22d3-47e0-a053-abd51b7ab156","publishedId":"2sB2ixjZ92","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"19373b"},"publishDate":"2025-04-23T13:48:28.000Z"},"item":[{"name":"Authentication","item":[{"name":"Get token","event":[{"listen":"test","script":{"id":"ed542596-7556-4339-ab94-902705d67690","exec":["var jsonData = JSON.parse(pm.response.text());\r","pm.collectionVariables.set(\"access_token\", jsonData[\"access_token\"]);"],"type":"text/javascript","packages":{}}}],"id":"c286cb25-6ccd-4a2f-a201-9211357064c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"","type":"text"},{"key":"officeGuid","value":"","type":"text"}]},"url":"http://example.com/NQC/NQWebServices/oauth2/token","description":"<p><strong>Authenticating for branch-specific requests</strong></p>\n<p>All requests that interact with a branch’s queueing engine require the API client to acquire a JSON Web Token (JWT) to do this. This token is secured and locked to the branch, and like all JWTs it has a set time during which it is valid. After the token has expired, a new token must be acquired.</p>\n","urlObject":{"path":["oauth2","token"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"5d31fada-9ff4-49c5-97b9-a2be7835844a","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"<string>","type":"text"},{"key":"client_id","value":"<string>","type":"text"},{"key":"officeguid","value":"<string>","type":"text"}]},"url":"http://example.com/NQC/NQWebServices/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c286cb25-6ccd-4a2f-a201-9211357064c6"}],"id":"ece33d71-a1ab-4e1d-91d6-bad930d31251","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"1fa2e162-a651-42c3-a48e-a26ad4162673"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"7e0dc96d-0ce4-405d-bfe3-f67ea6210e50"}}],"_postman_id":"ece33d71-a1ab-4e1d-91d6-bad930d31251","description":""},{"name":"Office Interaction","item":[{"name":"Get office List","id":"0ddce04c-2551-4de6-8cba-d1ddda502f75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/offices","description":"<p><strong>Get a list of all offices</strong></p>\n<p>For retrieving info on a particular office, perform an HTTP GET to the path <strong>/api/offices/{id}</strong> where the ID field corresponds to either the office INDEX (integer value) or its GUID (string value), depending on your needs or what information you have at hand.</p>\n<p>This function does not require authentication beyond any server-level mechanisms.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"263d1a3c-41c5-42d3-906e-828a3cd19843","id":"263d1a3c-41c5-42d3-906e-828a3cd19843","name":"Office Interaction","type":"folder"}},"urlObject":{"path":["api","offices"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"23fe126d-552b-4dae-8627-8eb1e6e42026","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"http://example.com/NQC/NQWebServices/api/offices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"index\": \"<integer>\",\n    \"guid\": \"<string>\",\n    \"name\": \"<string>\",\n    \"organizationId\": \"<integer>\",\n    \"regId\": \"<integer>\",\n    \"adminInfo\": {\n      \"name\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"email\": \"<string>\"\n    },\n    \"address\": {\n      \"street\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"city\": \"<string>\"\n    },\n    \"latestActive\": \"<integer>\",\n    \"terminal\": \"<boolean>\",\n    \"netComType\": \"<integer>\",\n    \"languageCode\": \"<integer>\",\n    \"slave\": \"<boolean>\",\n    \"externalAddress\": {\n      \"host\": \"<string>\",\n      \"port\": \"<integer>\"\n    }\n  },\n  {\n    \"index\": \"<integer>\",\n    \"guid\": \"<string>\",\n    \"name\": \"<string>\",\n    \"organizationId\": \"<integer>\",\n    \"regId\": \"<integer>\",\n    \"adminInfo\": {\n      \"name\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"email\": \"<string>\"\n    },\n    \"address\": {\n      \"street\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"city\": \"<string>\"\n    },\n    \"latestActive\": \"<integer>\",\n    \"terminal\": \"<boolean>\",\n    \"netComType\": \"<integer>\",\n    \"languageCode\": \"<integer>\",\n    \"slave\": \"<boolean>\",\n    \"externalAddress\": {\n      \"host\": \"<string>\",\n      \"port\": \"<integer>\"\n    }\n  }\n]"}],"_postman_id":"0ddce04c-2551-4de6-8cba-d1ddda502f75"},{"name":"Get office by ID","id":"bde910c7-f53d-449d-aae2-04d63eebfba8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/offices/1","description":"<p>Retrieve information about a specific office based on the index of the office</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"263d1a3c-41c5-42d3-906e-828a3cd19843","id":"263d1a3c-41c5-42d3-906e-828a3cd19843","name":"Office Interaction","type":"folder"}},"urlObject":{"path":["api","offices","1"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"8038d1c0-4cba-43fd-8834-9d191d900af5","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/offices/:id","protocol":"http","host":["example","com"],"path":["NQC","NQWebServices","api","offices",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"index\": \"<integer>\",\n  \"guid\": \"<string>\",\n  \"name\": \"<string>\",\n  \"organizationId\": \"<integer>\",\n  \"regId\": \"<integer>\",\n  \"adminInfo\": {\n    \"name\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"email\": \"<string>\"\n  },\n  \"address\": {\n    \"street\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"city\": \"<string>\"\n  },\n  \"latestActive\": \"<integer>\",\n  \"terminal\": \"<boolean>\",\n  \"netComType\": \"<integer>\",\n  \"languageCode\": \"<integer>\",\n  \"slave\": \"<boolean>\",\n  \"externalAddress\": {\n    \"host\": \"<string>\",\n    \"port\": \"<integer>\"\n  }\n}"}],"_postman_id":"bde910c7-f53d-449d-aae2-04d63eebfba8"},{"name":"Get office by OfficeGUID","id":"4ad5a4f9-e348-40d8-8996-b185b926d5db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/offices/","description":"<p>Retrieve information about a specific office based on the GUID of the office</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"263d1a3c-41c5-42d3-906e-828a3cd19843","id":"263d1a3c-41c5-42d3-906e-828a3cd19843","name":"Office Interaction","type":"folder"}},"urlObject":{"path":["api","offices",""],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"af1a2863-c1d7-43ce-b7de-f8278f67d76a","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/offices/:officeGuid","protocol":"http","host":["example","com"],"path":["NQC","NQWebServices","api","offices",":officeGuid"],"variable":[{"key":"officeGuid"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"index\": \"<integer>\",\n  \"guid\": \"<string>\",\n  \"name\": \"<string>\",\n  \"organizationId\": \"<integer>\",\n  \"regId\": \"<integer>\",\n  \"adminInfo\": {\n    \"name\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"email\": \"<string>\"\n  },\n  \"address\": {\n    \"street\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"city\": \"<string>\"\n  },\n  \"latestActive\": \"<integer>\",\n  \"terminal\": \"<boolean>\",\n  \"netComType\": \"<integer>\",\n  \"languageCode\": \"<integer>\",\n  \"slave\": \"<boolean>\",\n  \"externalAddress\": {\n    \"host\": \"<string>\",\n    \"port\": \"<integer>\"\n  }\n}"}],"_postman_id":"4ad5a4f9-e348-40d8-8996-b185b926d5db"},{"name":"Get servicetypes by office","id":"bba1e6c2-2c10-4236-9d98-47982d255ef3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/offices//servicetypes","description":"<p>Get a list of all servicetypes for the specified office</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"263d1a3c-41c5-42d3-906e-828a3cd19843","id":"263d1a3c-41c5-42d3-906e-828a3cd19843","name":"Office Interaction","type":"folder"}},"urlObject":{"path":["api","offices","","servicetypes"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"052b6e0e-840e-4777-8d95-6305a0a709a0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/offices/:officeGuid/servicetypes","protocol":"http","host":["example","com"],"path":["NQC","NQWebServices","api","offices",":officeGuid","servicetypes"],"variable":[{"key":"officeGuid"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<integer>\",\n    \"officeGuid\": \"<string>\",\n    \"officeName\": \"<string>\",\n    \"name\": \"<string>\",\n    \"active\": \"<boolean>\",\n    \"openCashiers\": \"<integer>\",\n    \"activeCashiers\": \"<integer>\",\n    \"lastForwarded\": \"<string>\",\n    \"waitingCustomersMQ\": \"<integer>\",\n    \"waitingCustomersSQ\": \"<integer>\",\n    \"waitingCustomersBQ\": \"<integer>\",\n    \"servedCustomersMQ\": \"<integer>\",\n    \"servedCustomersSQ\": \"<integer>\",\n    \"servedCustomersBQ\": \"<integer>\",\n    \"longestWaitingTimeTicketMQ\": \"<integer>\",\n    \"longestWaitingTimeTicketSQ\": \"<integer>\",\n    \"longestWaitingTimeTicketBQ\": \"<integer>\",\n    \"longestServiceTime\": \"<integer>\",\n    \"averageWaitingTimeMQ\": \"<integer>\",\n    \"averageWaitingTimeSQ\": \"<integer>\",\n    \"averageWaitingTimeBQ\": \"<integer>\",\n    \"averageServiceTimeMQ\": \"<integer>\",\n    \"averageServiceTimeSQ\": \"<integer>\",\n    \"averageServiceTimeBQ\": \"<integer>\"\n  },\n  {\n    \"id\": \"<integer>\",\n    \"officeGuid\": \"<string>\",\n    \"officeName\": \"<string>\",\n    \"name\": \"<string>\",\n    \"active\": \"<boolean>\",\n    \"openCashiers\": \"<integer>\",\n    \"activeCashiers\": \"<integer>\",\n    \"lastForwarded\": \"<string>\",\n    \"waitingCustomersMQ\": \"<integer>\",\n    \"waitingCustomersSQ\": \"<integer>\",\n    \"waitingCustomersBQ\": \"<integer>\",\n    \"servedCustomersMQ\": \"<integer>\",\n    \"servedCustomersSQ\": \"<integer>\",\n    \"servedCustomersBQ\": \"<integer>\",\n    \"longestWaitingTimeTicketMQ\": \"<integer>\",\n    \"longestWaitingTimeTicketSQ\": \"<integer>\",\n    \"longestWaitingTimeTicketBQ\": \"<integer>\",\n    \"longestServiceTime\": \"<integer>\",\n    \"averageWaitingTimeMQ\": \"<integer>\",\n    \"averageWaitingTimeSQ\": \"<integer>\",\n    \"averageWaitingTimeBQ\": \"<integer>\",\n    \"averageServiceTimeMQ\": \"<integer>\",\n    \"averageServiceTimeSQ\": \"<integer>\",\n    \"averageServiceTimeBQ\": \"<integer>\"\n  }\n]"}],"_postman_id":"bba1e6c2-2c10-4236-9d98-47982d255ef3"},{"name":"Get priorities by office","id":"91006699-8068-4759-807c-60336de6d33a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/offices//prioritylist","description":"<p>Get a list of priorities specified for the office</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"263d1a3c-41c5-42d3-906e-828a3cd19843","id":"263d1a3c-41c5-42d3-906e-828a3cd19843","name":"Office Interaction","type":"folder"}},"urlObject":{"path":["api","offices","","prioritylist"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"7735cb4f-99e6-4af9-9737-45b3ed3994b7","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/offices/:officeGuid/prioritylist","protocol":"http","host":["example","com"],"path":["NQC","NQWebServices","api","offices",":officeGuid","prioritylist"],"variable":[{"key":"officeGuid"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"<string>\",\n    \"number\": \"<integer>\"\n  },\n  {\n    \"name\": \"<string>\",\n    \"number\": \"<integer>\"\n  }\n]"}],"_postman_id":"91006699-8068-4759-807c-60336de6d33a"}],"id":"263d1a3c-41c5-42d3-906e-828a3cd19843","description":"<p>Requests related to office specific tasks</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"66e3e7ab-ca34-44c5-ab07-a228a7de566e"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"d0bf5b77-44d6-42d9-80ea-79610204c3dc"}}],"_postman_id":"263d1a3c-41c5-42d3-906e-828a3cd19843"},{"name":"User Interaction","item":[{"name":"Get user queue information by ID","id":"af034764-c7d9-400c-8d7f-14dc789edee8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/queueinfo/user/1","description":"<p>Get the queue information for the specified user</p>\n","urlObject":{"path":["api","queueinfo","user","1"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"81957a33-5027-4289-8f46-75d54e44c527","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/queueinfo/user/:userId","protocol":"http","host":["example","com"],"path":["NQC","NQWebServices","api","queueinfo","user",":userId"],"variable":[{"key":"userId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"user\": {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\"\n  },\n  \"serviceType\": {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\"\n  },\n  \"workstation\": {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\"\n  },\n  \"isLoggedOn\": \"<boolean>\",\n  \"isActive\": \"<boolean>\",\n  \"currentPriority\": \"<integer>\",\n  \"currentTicket\": \"<string>\",\n  \"lastForwardedTicket\": \"<string>\",\n  \"queues\": {\n    \"main\": {\n      \"waitingTickets\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"longestWaitingTicketTime\": \"<dateTime>\",\n      \"servedTickets\": \"<integer>\",\n      \"averageWaitingTime\": \"<integer>\",\n      \"averageServiceTime\": \"<integer>\"\n    },\n    \"secondary\": {\n      \"waitingTickets\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"longestWaitingTicketTime\": \"<dateTime>\",\n      \"servedTickets\": \"<integer>\",\n      \"averageWaitingTime\": \"<integer>\",\n      \"averageServiceTime\": \"<integer>\"\n    },\n    \"booked\": {\n      \"waitingTickets\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"longestWaitingTicketTime\": \"<dateTime>\",\n      \"servedTickets\": \"<integer>\",\n      \"averageWaitingTime\": \"<integer>\",\n      \"averageServiceTime\": \"<integer>\"\n    }\n  },\n  \"longestServiceTimeStart\": \"<dateTime>\",\n  \"servedServiceTypeTickets\": \"<integer>\",\n  \"servedWorkstationTickets\": \"<integer>\",\n  \"averageWaitingTime\": \"<integer>\",\n  \"averageServiceTime\": \"<integer>\",\n  \"averageServiceTimeWorkstationQueue\": \"<integer>\",\n  \"lastUpdated\": \"<dateTime>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"af034764-c7d9-400c-8d7f-14dc789edee8"},{"name":"Get all users queue information","id":"da1cd8be-143f-4c90-8a09-4186fd01ccda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/queueinfo/user","description":"<p>Get the queue information for all users</p>\n","urlObject":{"path":["api","queueinfo","user"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"2da2be0c-8e0d-4012-a9c4-4958b3f384ae","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"http://example.com/NQC/NQWebServices/api/queueinfo/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"user\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"serviceType\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"workstation\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"isLoggedOn\": \"<boolean>\",\n    \"isActive\": \"<boolean>\",\n    \"currentPriority\": \"<integer>\",\n    \"currentTicket\": \"<string>\",\n    \"lastForwardedTicket\": \"<string>\",\n    \"queues\": {\n      \"main\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"secondary\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"booked\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      }\n    },\n    \"longestServiceTimeStart\": \"<dateTime>\",\n    \"servedServiceTypeTickets\": \"<integer>\",\n    \"servedWorkstationTickets\": \"<integer>\",\n    \"averageWaitingTime\": \"<integer>\",\n    \"averageServiceTime\": \"<integer>\",\n    \"averageServiceTimeWorkstationQueue\": \"<integer>\",\n    \"lastUpdated\": \"<dateTime>\",\n    \"message\": \"<string>\"\n  },\n  {\n    \"user\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"serviceType\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"workstation\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"isLoggedOn\": \"<boolean>\",\n    \"isActive\": \"<boolean>\",\n    \"currentPriority\": \"<integer>\",\n    \"currentTicket\": \"<string>\",\n    \"lastForwardedTicket\": \"<string>\",\n    \"queues\": {\n      \"main\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"secondary\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"booked\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      }\n    },\n    \"longestServiceTimeStart\": \"<dateTime>\",\n    \"servedServiceTypeTickets\": \"<integer>\",\n    \"servedWorkstationTickets\": \"<integer>\",\n    \"averageWaitingTime\": \"<integer>\",\n    \"averageServiceTime\": \"<integer>\",\n    \"averageServiceTimeWorkstationQueue\": \"<integer>\",\n    \"lastUpdated\": \"<dateTime>\",\n    \"message\": \"<string>\"\n  }\n]"}],"_postman_id":"da1cd8be-143f-4c90-8a09-4186fd01ccda"},{"name":"Get user priorities","id":"c5f1a64c-d956-4666-8eea-3bfbc4fa7e17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/user/1/priorities","description":"<p>Get a list of priorities assigned to the specified user</p>\n","urlObject":{"path":["api","user","1","priorities"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"36be947b-8453-41ca-a8f7-1e3da02184f1","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/user/:userId/priorities","host":["http://example.com/NQC/NQWebServices"],"path":["api","user",":userId","priorities"],"variable":[{"key":"userId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\",\n    \"waitingCustomers\": \"<integer>\"\n  },\n  {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\",\n    \"waitingCustomers\": \"<integer>\"\n  }\n]"}],"_postman_id":"c5f1a64c-d956-4666-8eea-3bfbc4fa7e17"},{"name":"Set user priority","id":"cab4f63d-bf34-4f26-9b1c-a643936d965e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/user/1/priority/1","description":"<p>Set the priority of the provided user to the priority with the provided number</p>\n","urlObject":{"path":["api","user","1","priority","1"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"c2be6d16-5038-4bbe-8b19-14f89889a8a9","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/user/:userId/priority/:priorityNumber","host":["http://example.com/NQC/NQWebServices"],"path":["api","user",":userId","priority",":priorityNumber"],"variable":[{"key":"userId"},{"key":"priorityNumber"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"targetSite\": {\n    \"memberType\": 128,\n    \"name\": \"<string>\",\n    \"declaringType\": {\n      \"name\": \"<string>\",\n      \"customAttributes\": [\n        {\n          \"attributeType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"constructor\": {\n            \"name\": \"<string>\",\n            \"declaringType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"reflectedType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"module\": {\n              \"assembly\": {\n                \"definedTypes\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 128,\n                    \"namespace\": \"<string>\",\n                    \"assemblyQualifiedName\": \"<string>\",\n                    \"fullName\": \"<string>\",\n                    \"assembly\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"isInterface\": \"<boolean>\",\n                    \"isNested\": \"<boolean>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"declaringMethod\": {\n                      \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"underlyingSystemType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"isTypeDefinition\": \"<boolean>\",\n                    \"isArray\": \"<boolean>\",\n                    \"isByRef\": \"<boolean>\",\n                    \"isPointer\": \"<boolean>\",\n                    \"isConstructedGenericType\": \"<boolean>\",\n                    \"isGenericParameter\": \"<boolean>\",\n                    \"isGenericTypeParameter\": \"<boolean>\",\n                    \"isGenericMethodParameter\": \"<boolean>\",\n                    \"isGenericType\": \"<boolean>\",\n                    \"isGenericTypeDefinition\": \"<boolean>\",\n                    \"isSZArray\": \"<boolean>\",\n                    \"isVariableBoundArray\": \"<boolean>\",\n                    \"isByRefLike\": \"<boolean>\",\n                    \"isFunctionPointer\": \"<boolean>\",\n                    \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                    \"hasElementType\": \"<boolean>\",\n                    \"genericTypeArguments\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    ],\n                    \"genericParameterPosition\": \"<integer>\",\n                    \"genericParameterAttributes\": 4,\n                    \"attributes\": 0,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isImport\": \"<boolean>\",\n                    \"isSealed\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isClass\": \"<boolean>\",\n                    \"isNestedAssembly\": \"<boolean>\",\n                    \"isNestedFamANDAssem\": \"<boolean>\",\n                    \"isNestedFamily\": \"<boolean>\",\n                    \"isNestedFamORAssem\": \"<boolean>\",\n                    \"isNestedPrivate\": \"<boolean>\",\n                    \"isNestedPublic\": \"<boolean>\",\n                    \"isNotPublic\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isAutoLayout\": \"<boolean>\",\n                    \"isExplicitLayout\": \"<boolean>\",\n                    \"isLayoutSequential\": \"<boolean>\",\n                    \"isAnsiClass\": \"<boolean>\",\n                    \"isAutoClass\": \"<boolean>\",\n                    \"isUnicodeClass\": \"<boolean>\",\n                    \"isCOMObject\": \"<boolean>\",\n                    \"isContextful\": \"<boolean>\",\n                    \"isEnum\": \"<boolean>\",\n                    \"isMarshalByRef\": \"<boolean>\",\n                    \"isPrimitive\": \"<boolean>\",\n                    \"isValueType\": \"<boolean>\",\n                    \"isSignatureType\": \"<boolean>\",\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"structLayoutAttribute\": {\n                      \"typeId\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"value\": 3\n                    },\n                    \"typeInitializer\": {\n                      \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                    },\n                    \"typeHandle\": {\n                      \"value\": {}\n                    },\n                    \"guid\": \"<uuid>\",\n                    \"baseType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"isSerializable\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"isVisible\": \"<boolean>\",\n                    \"genericTypeParameters\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    ],\n                    \"declaredConstructors\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                      }\n                    ],\n                    \"declaredEvents\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"memberType\": 8,\n                        \"attributes\": 1024,\n                        \"isSpecialName\": \"<boolean>\",\n                        \"addMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 2048,\n                          \"methodImplementationFlags\": 65535,\n                          \"callingConvention\": 64,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 32,\n                          \"returnParameter\": {\n                            \"attributes\": 2,\n                            \"member\": {\n                              \"memberType\": 8,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"removeMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 16384,\n                          \"methodImplementationFlags\": 64,\n                          \"callingConvention\": 32,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 2,\n                          \"returnParameter\": {\n                            \"attributes\": 8,\n                            \"member\": {\n                              \"memberType\": 2,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"raiseMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 8192,\n                          \"methodImplementationFlags\": 4,\n                          \"callingConvention\": 32,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 4,\n                          \"returnParameter\": {\n                            \"attributes\": 2,\n                            \"member\": {\n                              \"memberType\": 191,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"isMulticast\": \"<boolean>\",\n                        \"eventHandlerType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        }\n                      }\n                    ],\n                    \"declaredFields\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"memberType\": 2,\n                        \"attributes\": 32768,\n                        \"fieldType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"isInitOnly\": \"<boolean>\",\n                        \"isLiteral\": \"<boolean>\",\n                        \"isNotSerialized\": \"<boolean>\",\n                        \"isPinvokeImpl\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"fieldHandle\": {\n                          \"value\": {}\n                        }\n                      }\n                    ],\n                    \"declaredMembers\": [\n                      {\n                        \"memberType\": 191,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      }\n                    ],\n                    \"declaredMethods\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 4096,\n                        \"methodImplementationFlags\": 32,\n                        \"callingConvention\": 1,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 64,\n                        \"returnParameter\": {\n                          \"attributes\": 0,\n                          \"member\": {\n                            \"memberType\": 1,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      }\n                    ],\n                    \"declaredNestedTypes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                      }\n                    ],\n                    \"declaredProperties\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"memberType\": 16,\n                        \"propertyType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"attributes\": 62464,\n                        \"isSpecialName\": \"<boolean>\",\n                        \"canRead\": \"<boolean>\",\n                        \"canWrite\": \"<boolean>\",\n                        \"getMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 128,\n                          \"methodImplementationFlags\": 16,\n                          \"callingConvention\": 1,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 191,\n                          \"returnParameter\": {\n                            \"attributes\": 32768,\n                            \"member\": {\n                              \"memberType\": 8,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"setMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 16384,\n                          \"methodImplementationFlags\": 32,\n                          \"callingConvention\": 3,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 32,\n                          \"returnParameter\": {\n                            \"attributes\": 61440,\n                            \"member\": {\n                              \"memberType\": 191,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        }\n                      }\n                    ],\n                    \"implementedInterfaces\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    ]\n                  }\n                ],\n                \"exportedTypes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ],\n                \"codeBase\": \"<string>\",\n                \"entryPoint\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 16,\n                  \"methodImplementationFlags\": 1,\n                  \"callingConvention\": 3,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 128,\n                  \"returnParameter\": {\n                    \"attributes\": 16,\n                    \"member\": {\n                      \"memberType\": 64,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"fullName\": \"<string>\",\n                \"imageRuntimeVersion\": \"<string>\",\n                \"isDynamic\": \"<boolean>\",\n                \"location\": \"<string>\",\n                \"reflectionOnly\": \"<boolean>\",\n                \"isCollectible\": \"<boolean>\",\n                \"isFullyTrusted\": \"<boolean>\",\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"escapedCodeBase\": \"<string>\",\n                \"manifestModule\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"modules\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  }\n                ],\n                \"globalAssemblyCache\": \"<boolean>\",\n                \"hostContext\": \"<long>\",\n                \"securityRuleSet\": 2\n              },\n              \"fullyQualifiedName\": \"<string>\",\n              \"name\": \"<string>\",\n              \"mdStreamVersion\": \"<integer>\",\n              \"moduleVersionId\": \"<uuid>\",\n              \"scopeName\": \"<string>\",\n              \"moduleHandle\": {\n                \"mdStreamVersion\": \"<integer>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"metadataToken\": \"<integer>\"\n            },\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"isCollectible\": \"<boolean>\",\n            \"metadataToken\": \"<integer>\",\n            \"attributes\": 64,\n            \"methodImplementationFlags\": 128,\n            \"callingConvention\": 64,\n            \"isAbstract\": \"<boolean>\",\n            \"isConstructor\": \"<boolean>\",\n            \"isFinal\": \"<boolean>\",\n            \"isHideBySig\": \"<boolean>\",\n            \"isSpecialName\": \"<boolean>\",\n            \"isStatic\": \"<boolean>\",\n            \"isVirtual\": \"<boolean>\",\n            \"isAssembly\": \"<boolean>\",\n            \"isFamily\": \"<boolean>\",\n            \"isFamilyAndAssembly\": \"<boolean>\",\n            \"isFamilyOrAssembly\": \"<boolean>\",\n            \"isPrivate\": \"<boolean>\",\n            \"isPublic\": \"<boolean>\",\n            \"isConstructedGenericMethod\": \"<boolean>\",\n            \"isGenericMethod\": \"<boolean>\",\n            \"isGenericMethodDefinition\": \"<boolean>\",\n            \"containsGenericParameters\": \"<boolean>\",\n            \"methodHandle\": {\n              \"value\": {}\n            },\n            \"isSecurityCritical\": \"<boolean>\",\n            \"isSecuritySafeCritical\": \"<boolean>\",\n            \"isSecurityTransparent\": \"<boolean>\",\n            \"memberType\": 191\n          },\n          \"constructorArguments\": [\n            {\n              \"argumentType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"value\": {\n                \"nullable\": true\n              }\n            }\n          ],\n          \"namedArguments\": [\n            {\n              \"memberInfo\": {\n                \"memberType\": 128,\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\"\n              },\n              \"typedValue\": {\n                \"argumentType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"value\": {\n                  \"nullable\": true\n                }\n              },\n              \"memberName\": \"<string>\",\n              \"isField\": \"<boolean>\"\n            }\n          ]\n        }\n      ],\n      \"isCollectible\": \"<boolean>\",\n      \"metadataToken\": \"<integer>\",\n      \"memberType\": 1,\n      \"namespace\": \"<string>\",\n      \"assemblyQualifiedName\": \"<string>\",\n      \"fullName\": \"<string>\",\n      \"assembly\": {\n        \"definedTypes\": [\n          {\n            \"name\": \"<string>\",\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"isCollectible\": \"<boolean>\",\n            \"metadataToken\": \"<integer>\",\n            \"memberType\": 191,\n            \"namespace\": \"<string>\",\n            \"assemblyQualifiedName\": \"<string>\",\n            \"fullName\": \"<string>\",\n            \"assembly\": {\n              \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n            },\n            \"module\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"isInterface\": \"<boolean>\",\n            \"isNested\": \"<boolean>\",\n            \"declaringType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"declaringMethod\": {\n              \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n            },\n            \"reflectedType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"underlyingSystemType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"isTypeDefinition\": \"<boolean>\",\n            \"isArray\": \"<boolean>\",\n            \"isByRef\": \"<boolean>\",\n            \"isPointer\": \"<boolean>\",\n            \"isConstructedGenericType\": \"<boolean>\",\n            \"isGenericParameter\": \"<boolean>\",\n            \"isGenericTypeParameter\": \"<boolean>\",\n            \"isGenericMethodParameter\": \"<boolean>\",\n            \"isGenericType\": \"<boolean>\",\n            \"isGenericTypeDefinition\": \"<boolean>\",\n            \"isSZArray\": \"<boolean>\",\n            \"isVariableBoundArray\": \"<boolean>\",\n            \"isByRefLike\": \"<boolean>\",\n            \"isFunctionPointer\": \"<boolean>\",\n            \"isUnmanagedFunctionPointer\": \"<boolean>\",\n            \"hasElementType\": \"<boolean>\",\n            \"genericTypeArguments\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ],\n            \"genericParameterPosition\": \"<integer>\",\n            \"genericParameterAttributes\": 32,\n            \"attributes\": 1024,\n            \"isAbstract\": \"<boolean>\",\n            \"isImport\": \"<boolean>\",\n            \"isSealed\": \"<boolean>\",\n            \"isSpecialName\": \"<boolean>\",\n            \"isClass\": \"<boolean>\",\n            \"isNestedAssembly\": \"<boolean>\",\n            \"isNestedFamANDAssem\": \"<boolean>\",\n            \"isNestedFamily\": \"<boolean>\",\n            \"isNestedFamORAssem\": \"<boolean>\",\n            \"isNestedPrivate\": \"<boolean>\",\n            \"isNestedPublic\": \"<boolean>\",\n            \"isNotPublic\": \"<boolean>\",\n            \"isPublic\": \"<boolean>\",\n            \"isAutoLayout\": \"<boolean>\",\n            \"isExplicitLayout\": \"<boolean>\",\n            \"isLayoutSequential\": \"<boolean>\",\n            \"isAnsiClass\": \"<boolean>\",\n            \"isAutoClass\": \"<boolean>\",\n            \"isUnicodeClass\": \"<boolean>\",\n            \"isCOMObject\": \"<boolean>\",\n            \"isContextful\": \"<boolean>\",\n            \"isEnum\": \"<boolean>\",\n            \"isMarshalByRef\": \"<boolean>\",\n            \"isPrimitive\": \"<boolean>\",\n            \"isValueType\": \"<boolean>\",\n            \"isSignatureType\": \"<boolean>\",\n            \"isSecurityCritical\": \"<boolean>\",\n            \"isSecuritySafeCritical\": \"<boolean>\",\n            \"isSecurityTransparent\": \"<boolean>\",\n            \"structLayoutAttribute\": {\n              \"typeId\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"value\": 2\n            },\n            \"typeInitializer\": {\n              \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n            },\n            \"typeHandle\": {\n              \"value\": {}\n            },\n            \"guid\": \"<uuid>\",\n            \"baseType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"isSerializable\": \"<boolean>\",\n            \"containsGenericParameters\": \"<boolean>\",\n            \"isVisible\": \"<boolean>\",\n            \"genericTypeParameters\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ],\n            \"declaredConstructors\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n              }\n            ],\n            \"declaredEvents\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 191,\n                \"attributes\": 0,\n                \"isSpecialName\": \"<boolean>\",\n                \"addMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 32,\n                  \"methodImplementationFlags\": 32,\n                  \"callingConvention\": 32,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 128,\n                  \"returnParameter\": {\n                    \"attributes\": 32768,\n                    \"member\": {\n                      \"memberType\": 16,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"removeMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 1024,\n                  \"methodImplementationFlags\": 4,\n                  \"callingConvention\": 3,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 64,\n                  \"returnParameter\": {\n                    \"attributes\": 1,\n                    \"member\": {\n                      \"memberType\": 32,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"raiseMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 1024,\n                  \"methodImplementationFlags\": 1,\n                  \"callingConvention\": 3,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 2,\n                  \"returnParameter\": {\n                    \"attributes\": 32768,\n                    \"member\": {\n                      \"memberType\": 64,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"isMulticast\": \"<boolean>\",\n                \"eventHandlerType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              }\n            ],\n            \"declaredFields\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 8,\n                \"attributes\": 2,\n                \"fieldType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"isInitOnly\": \"<boolean>\",\n                \"isLiteral\": \"<boolean>\",\n                \"isNotSerialized\": \"<boolean>\",\n                \"isPinvokeImpl\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isStatic\": \"<boolean>\",\n                \"isAssembly\": \"<boolean>\",\n                \"isFamily\": \"<boolean>\",\n                \"isFamilyAndAssembly\": \"<boolean>\",\n                \"isFamilyOrAssembly\": \"<boolean>\",\n                \"isPrivate\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"fieldHandle\": {\n                  \"value\": {}\n                }\n              }\n            ],\n            \"declaredMembers\": [\n              {\n                \"memberType\": 128,\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\"\n              }\n            ],\n            \"declaredMethods\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"attributes\": 8192,\n                \"methodImplementationFlags\": 2,\n                \"callingConvention\": 32,\n                \"isAbstract\": \"<boolean>\",\n                \"isConstructor\": \"<boolean>\",\n                \"isFinal\": \"<boolean>\",\n                \"isHideBySig\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isStatic\": \"<boolean>\",\n                \"isVirtual\": \"<boolean>\",\n                \"isAssembly\": \"<boolean>\",\n                \"isFamily\": \"<boolean>\",\n                \"isFamilyAndAssembly\": \"<boolean>\",\n                \"isFamilyOrAssembly\": \"<boolean>\",\n                \"isPrivate\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isConstructedGenericMethod\": \"<boolean>\",\n                \"isGenericMethod\": \"<boolean>\",\n                \"isGenericMethodDefinition\": \"<boolean>\",\n                \"containsGenericParameters\": \"<boolean>\",\n                \"methodHandle\": {\n                  \"value\": {}\n                },\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"memberType\": 128,\n                \"returnParameter\": {\n                  \"attributes\": 8,\n                  \"member\": {\n                    \"memberType\": 2,\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"name\": \"<string>\",\n                  \"parameterType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"position\": \"<integer>\",\n                  \"isIn\": \"<boolean>\",\n                  \"isLcid\": \"<boolean>\",\n                  \"isOptional\": \"<boolean>\",\n                  \"isOut\": \"<boolean>\",\n                  \"isRetval\": \"<boolean>\",\n                  \"defaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"rawDefaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"hasDefaultValue\": \"<boolean>\",\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"returnType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"returnTypeCustomAttributes\": {}\n              }\n            ],\n            \"declaredNestedTypes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n              }\n            ],\n            \"declaredProperties\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 191,\n                \"propertyType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"attributes\": 1024,\n                \"isSpecialName\": \"<boolean>\",\n                \"canRead\": \"<boolean>\",\n                \"canWrite\": \"<boolean>\",\n                \"getMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 128,\n                  \"methodImplementationFlags\": 512,\n                  \"callingConvention\": 2,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 64,\n                  \"returnParameter\": {\n                    \"attributes\": 0,\n                    \"member\": {\n                      \"memberType\": 32,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"setMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 5,\n                  \"methodImplementationFlags\": 16,\n                  \"callingConvention\": 1,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 1,\n                  \"returnParameter\": {\n                    \"attributes\": 1,\n                    \"member\": {\n                      \"memberType\": 2,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                }\n              }\n            ],\n            \"implementedInterfaces\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ]\n          }\n        ],\n        \"exportedTypes\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          }\n        ],\n        \"codeBase\": \"<string>\",\n        \"entryPoint\": {\n          \"name\": \"<string>\",\n          \"declaringType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"reflectedType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"module\": {\n            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n          },\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"isCollectible\": \"<boolean>\",\n          \"metadataToken\": \"<integer>\",\n          \"attributes\": 128,\n          \"methodImplementationFlags\": 64,\n          \"callingConvention\": 1,\n          \"isAbstract\": \"<boolean>\",\n          \"isConstructor\": \"<boolean>\",\n          \"isFinal\": \"<boolean>\",\n          \"isHideBySig\": \"<boolean>\",\n          \"isSpecialName\": \"<boolean>\",\n          \"isStatic\": \"<boolean>\",\n          \"isVirtual\": \"<boolean>\",\n          \"isAssembly\": \"<boolean>\",\n          \"isFamily\": \"<boolean>\",\n          \"isFamilyAndAssembly\": \"<boolean>\",\n          \"isFamilyOrAssembly\": \"<boolean>\",\n          \"isPrivate\": \"<boolean>\",\n          \"isPublic\": \"<boolean>\",\n          \"isConstructedGenericMethod\": \"<boolean>\",\n          \"isGenericMethod\": \"<boolean>\",\n          \"isGenericMethodDefinition\": \"<boolean>\",\n          \"containsGenericParameters\": \"<boolean>\",\n          \"methodHandle\": {\n            \"value\": {}\n          },\n          \"isSecurityCritical\": \"<boolean>\",\n          \"isSecuritySafeCritical\": \"<boolean>\",\n          \"isSecurityTransparent\": \"<boolean>\",\n          \"memberType\": 16,\n          \"returnParameter\": {\n            \"attributes\": 8,\n            \"member\": {\n              \"memberType\": 4,\n              \"name\": \"<string>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\"\n            },\n            \"name\": \"<string>\",\n            \"parameterType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"position\": \"<integer>\",\n            \"isIn\": \"<boolean>\",\n            \"isLcid\": \"<boolean>\",\n            \"isOptional\": \"<boolean>\",\n            \"isOut\": \"<boolean>\",\n            \"isRetval\": \"<boolean>\",\n            \"defaultValue\": {\n              \"nullable\": true,\n              \"readOnly\": true\n            },\n            \"rawDefaultValue\": {\n              \"nullable\": true,\n              \"readOnly\": true\n            },\n            \"hasDefaultValue\": \"<boolean>\",\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"metadataToken\": \"<integer>\"\n          },\n          \"returnType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"returnTypeCustomAttributes\": {}\n        },\n        \"fullName\": \"<string>\",\n        \"imageRuntimeVersion\": \"<string>\",\n        \"isDynamic\": \"<boolean>\",\n        \"location\": \"<string>\",\n        \"reflectionOnly\": \"<boolean>\",\n        \"isCollectible\": \"<boolean>\",\n        \"isFullyTrusted\": \"<boolean>\",\n        \"customAttributes\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n          }\n        ],\n        \"escapedCodeBase\": \"<string>\",\n        \"manifestModule\": {\n          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n        },\n        \"modules\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n          }\n        ],\n        \"globalAssemblyCache\": \"<boolean>\",\n        \"hostContext\": \"<long>\",\n        \"securityRuleSet\": 2\n      },\n      \"module\": {\n        \"assembly\": {\n          \"definedTypes\": [\n            {\n              \"name\": \"<string>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\",\n              \"memberType\": 191,\n              \"namespace\": \"<string>\",\n              \"assemblyQualifiedName\": \"<string>\",\n              \"fullName\": \"<string>\",\n              \"assembly\": {\n                \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"isInterface\": \"<boolean>\",\n              \"isNested\": \"<boolean>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"declaringMethod\": {\n                \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"underlyingSystemType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"isTypeDefinition\": \"<boolean>\",\n              \"isArray\": \"<boolean>\",\n              \"isByRef\": \"<boolean>\",\n              \"isPointer\": \"<boolean>\",\n              \"isConstructedGenericType\": \"<boolean>\",\n              \"isGenericParameter\": \"<boolean>\",\n              \"isGenericTypeParameter\": \"<boolean>\",\n              \"isGenericMethodParameter\": \"<boolean>\",\n              \"isGenericType\": \"<boolean>\",\n              \"isGenericTypeDefinition\": \"<boolean>\",\n              \"isSZArray\": \"<boolean>\",\n              \"isVariableBoundArray\": \"<boolean>\",\n              \"isByRefLike\": \"<boolean>\",\n              \"isFunctionPointer\": \"<boolean>\",\n              \"isUnmanagedFunctionPointer\": \"<boolean>\",\n              \"hasElementType\": \"<boolean>\",\n              \"genericTypeArguments\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"genericParameterPosition\": \"<integer>\",\n              \"genericParameterAttributes\": 8,\n              \"attributes\": 2048,\n              \"isAbstract\": \"<boolean>\",\n              \"isImport\": \"<boolean>\",\n              \"isSealed\": \"<boolean>\",\n              \"isSpecialName\": \"<boolean>\",\n              \"isClass\": \"<boolean>\",\n              \"isNestedAssembly\": \"<boolean>\",\n              \"isNestedFamANDAssem\": \"<boolean>\",\n              \"isNestedFamily\": \"<boolean>\",\n              \"isNestedFamORAssem\": \"<boolean>\",\n              \"isNestedPrivate\": \"<boolean>\",\n              \"isNestedPublic\": \"<boolean>\",\n              \"isNotPublic\": \"<boolean>\",\n              \"isPublic\": \"<boolean>\",\n              \"isAutoLayout\": \"<boolean>\",\n              \"isExplicitLayout\": \"<boolean>\",\n              \"isLayoutSequential\": \"<boolean>\",\n              \"isAnsiClass\": \"<boolean>\",\n              \"isAutoClass\": \"<boolean>\",\n              \"isUnicodeClass\": \"<boolean>\",\n              \"isCOMObject\": \"<boolean>\",\n              \"isContextful\": \"<boolean>\",\n              \"isEnum\": \"<boolean>\",\n              \"isMarshalByRef\": \"<boolean>\",\n              \"isPrimitive\": \"<boolean>\",\n              \"isValueType\": \"<boolean>\",\n              \"isSignatureType\": \"<boolean>\",\n              \"isSecurityCritical\": \"<boolean>\",\n              \"isSecuritySafeCritical\": \"<boolean>\",\n              \"isSecurityTransparent\": \"<boolean>\",\n              \"structLayoutAttribute\": {\n                \"typeId\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"value\": 2\n              },\n              \"typeInitializer\": {\n                \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n              },\n              \"typeHandle\": {\n                \"value\": {}\n              },\n              \"guid\": \"<uuid>\",\n              \"baseType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"isSerializable\": \"<boolean>\",\n              \"containsGenericParameters\": \"<boolean>\",\n              \"isVisible\": \"<boolean>\",\n              \"genericTypeParameters\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"declaredConstructors\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                }\n              ],\n              \"declaredEvents\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 191,\n                  \"attributes\": 1024,\n                  \"isSpecialName\": \"<boolean>\",\n                  \"addMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 64,\n                    \"methodImplementationFlags\": 65535,\n                    \"callingConvention\": 64,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 1,\n                    \"returnParameter\": {\n                      \"attributes\": 32768,\n                      \"member\": {\n                        \"memberType\": 191,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"removeMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 8,\n                    \"methodImplementationFlags\": 16,\n                    \"callingConvention\": 3,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 1,\n                    \"returnParameter\": {\n                      \"attributes\": 2,\n                      \"member\": {\n                        \"memberType\": 1,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"raiseMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 1024,\n                    \"methodImplementationFlags\": 3,\n                    \"callingConvention\": 1,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 64,\n                    \"returnParameter\": {\n                      \"attributes\": 16384,\n                      \"member\": {\n                        \"memberType\": 191,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"isMulticast\": \"<boolean>\",\n                  \"eventHandlerType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                }\n              ],\n              \"declaredFields\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 128,\n                  \"attributes\": 8192,\n                  \"fieldType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"isInitOnly\": \"<boolean>\",\n                  \"isLiteral\": \"<boolean>\",\n                  \"isNotSerialized\": \"<boolean>\",\n                  \"isPinvokeImpl\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"fieldHandle\": {\n                    \"value\": {}\n                  }\n                }\n              ],\n              \"declaredMembers\": [\n                {\n                  \"memberType\": 64,\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\"\n                }\n              ],\n              \"declaredMethods\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 2048,\n                  \"methodImplementationFlags\": 4096,\n                  \"callingConvention\": 3,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 4,\n                  \"returnParameter\": {\n                    \"attributes\": 16384,\n                    \"member\": {\n                      \"memberType\": 128,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                }\n              ],\n              \"declaredNestedTypes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                }\n              ],\n              \"declaredProperties\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 8,\n                  \"propertyType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"attributes\": 4096,\n                  \"isSpecialName\": \"<boolean>\",\n                  \"canRead\": \"<boolean>\",\n                  \"canWrite\": \"<boolean>\",\n                  \"getMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 0,\n                    \"methodImplementationFlags\": 65535,\n                    \"callingConvention\": 1,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 32,\n                    \"returnParameter\": {\n                      \"attributes\": 4,\n                      \"member\": {\n                        \"memberType\": 32,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"setMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 3,\n                    \"methodImplementationFlags\": 128,\n                    \"callingConvention\": 64,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 16,\n                    \"returnParameter\": {\n                      \"attributes\": 16,\n                      \"member\": {\n                        \"memberType\": 64,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  }\n                }\n              ],\n              \"implementedInterfaces\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ]\n            }\n          ],\n          \"exportedTypes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            }\n          ],\n          \"codeBase\": \"<string>\",\n          \"entryPoint\": {\n            \"name\": \"<string>\",\n            \"declaringType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"reflectedType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"module\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"isCollectible\": \"<boolean>\",\n            \"metadataToken\": \"<integer>\",\n            \"attributes\": 16,\n            \"methodImplementationFlags\": 8,\n            \"callingConvention\": 64,\n            \"isAbstract\": \"<boolean>\",\n            \"isConstructor\": \"<boolean>\",\n            \"isFinal\": \"<boolean>\",\n            \"isHideBySig\": \"<boolean>\",\n            \"isSpecialName\": \"<boolean>\",\n            \"isStatic\": \"<boolean>\",\n            \"isVirtual\": \"<boolean>\",\n            \"isAssembly\": \"<boolean>\",\n            \"isFamily\": \"<boolean>\",\n            \"isFamilyAndAssembly\": \"<boolean>\",\n            \"isFamilyOrAssembly\": \"<boolean>\",\n            \"isPrivate\": \"<boolean>\",\n            \"isPublic\": \"<boolean>\",\n            \"isConstructedGenericMethod\": \"<boolean>\",\n            \"isGenericMethod\": \"<boolean>\",\n            \"isGenericMethodDefinition\": \"<boolean>\",\n            \"containsGenericParameters\": \"<boolean>\",\n            \"methodHandle\": {\n              \"value\": {}\n            },\n            \"isSecurityCritical\": \"<boolean>\",\n            \"isSecuritySafeCritical\": \"<boolean>\",\n            \"isSecurityTransparent\": \"<boolean>\",\n            \"memberType\": 16,\n            \"returnParameter\": {\n              \"attributes\": 61440,\n              \"member\": {\n                \"memberType\": 191,\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\"\n              },\n              \"name\": \"<string>\",\n              \"parameterType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"position\": \"<integer>\",\n              \"isIn\": \"<boolean>\",\n              \"isLcid\": \"<boolean>\",\n              \"isOptional\": \"<boolean>\",\n              \"isOut\": \"<boolean>\",\n              \"isRetval\": \"<boolean>\",\n              \"defaultValue\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"rawDefaultValue\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"hasDefaultValue\": \"<boolean>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"metadataToken\": \"<integer>\"\n            },\n            \"returnType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"returnTypeCustomAttributes\": {}\n          },\n          \"fullName\": \"<string>\",\n          \"imageRuntimeVersion\": \"<string>\",\n          \"isDynamic\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"reflectionOnly\": \"<boolean>\",\n          \"isCollectible\": \"<boolean>\",\n          \"isFullyTrusted\": \"<boolean>\",\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"escapedCodeBase\": \"<string>\",\n          \"manifestModule\": {\n            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n          },\n          \"modules\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            }\n          ],\n          \"globalAssemblyCache\": \"<boolean>\",\n          \"hostContext\": \"<long>\",\n          \"securityRuleSet\": 2\n        },\n        \"fullyQualifiedName\": \"<string>\",\n        \"name\": \"<string>\",\n        \"mdStreamVersion\": \"<integer>\",\n        \"moduleVersionId\": \"<uuid>\",\n        \"scopeName\": \"<string>\",\n        \"moduleHandle\": {\n          \"mdStreamVersion\": \"<integer>\"\n        },\n        \"customAttributes\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n          }\n        ],\n        \"metadataToken\": \"<integer>\"\n      },\n      \"isInterface\": \"<boolean>\",\n      \"isNested\": \"<boolean>\",\n      \"declaringType\": {\n        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n      },\n      \"declaringMethod\": {\n        \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n      },\n      \"reflectedType\": {\n        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n      },\n      \"underlyingSystemType\": {\n        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n      },\n      \"isTypeDefinition\": \"<boolean>\",\n      \"isArray\": \"<boolean>\",\n      \"isByRef\": \"<boolean>\",\n      \"isPointer\": \"<boolean>\",\n      \"isConstructedGenericType\": \"<boolean>\",\n      \"isGenericParameter\": \"<boolean>\",\n      \"isGenericTypeParameter\": \"<boolean>\",\n      \"isGenericMethodParameter\": \"<boolean>\",\n      \"isGenericType\": \"<boolean>\",\n      \"isGenericTypeDefinition\": \"<boolean>\",\n      \"isSZArray\": \"<boolean>\",\n      \"isVariableBoundArray\": \"<boolean>\",\n      \"isByRefLike\": \"<boolean>\",\n      \"isFunctionPointer\": \"<boolean>\",\n      \"isUnmanagedFunctionPointer\": \"<boolean>\",\n      \"hasElementType\": \"<boolean>\",\n      \"genericTypeArguments\": [\n        {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        }\n      ],\n      \"genericParameterPosition\": \"<integer>\",\n      \"genericParameterAttributes\": 0,\n      \"attributes\": 1,\n      \"isAbstract\": \"<boolean>\",\n      \"isImport\": \"<boolean>\",\n      \"isSealed\": \"<boolean>\",\n      \"isSpecialName\": \"<boolean>\",\n      \"isClass\": \"<boolean>\",\n      \"isNestedAssembly\": \"<boolean>\",\n      \"isNestedFamANDAssem\": \"<boolean>\",\n      \"isNestedFamily\": \"<boolean>\",\n      \"isNestedFamORAssem\": \"<boolean>\",\n      \"isNestedPrivate\": \"<boolean>\",\n      \"isNestedPublic\": \"<boolean>\",\n      \"isNotPublic\": \"<boolean>\",\n      \"isPublic\": \"<boolean>\",\n      \"isAutoLayout\": \"<boolean>\",\n      \"isExplicitLayout\": \"<boolean>\",\n      \"isLayoutSequential\": \"<boolean>\",\n      \"isAnsiClass\": \"<boolean>\",\n      \"isAutoClass\": \"<boolean>\",\n      \"isUnicodeClass\": \"<boolean>\",\n      \"isCOMObject\": \"<boolean>\",\n      \"isContextful\": \"<boolean>\",\n      \"isEnum\": \"<boolean>\",\n      \"isMarshalByRef\": \"<boolean>\",\n      \"isPrimitive\": \"<boolean>\",\n      \"isValueType\": \"<boolean>\",\n      \"isSignatureType\": \"<boolean>\",\n      \"isSecurityCritical\": \"<boolean>\",\n      \"isSecuritySafeCritical\": \"<boolean>\",\n      \"isSecurityTransparent\": \"<boolean>\",\n      \"structLayoutAttribute\": {\n        \"typeId\": {\n          \"nullable\": true,\n          \"readOnly\": true\n        },\n        \"value\": 3\n      },\n      \"typeInitializer\": {\n        \"name\": \"<string>\",\n        \"declaringType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"reflectedType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"module\": {\n          \"assembly\": {\n            \"definedTypes\": [\n              {\n                \"name\": \"<string>\",\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 64,\n                \"namespace\": \"<string>\",\n                \"assemblyQualifiedName\": \"<string>\",\n                \"fullName\": \"<string>\",\n                \"assembly\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"isInterface\": \"<boolean>\",\n                \"isNested\": \"<boolean>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"declaringMethod\": {\n                  \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"underlyingSystemType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"isTypeDefinition\": \"<boolean>\",\n                \"isArray\": \"<boolean>\",\n                \"isByRef\": \"<boolean>\",\n                \"isPointer\": \"<boolean>\",\n                \"isConstructedGenericType\": \"<boolean>\",\n                \"isGenericParameter\": \"<boolean>\",\n                \"isGenericTypeParameter\": \"<boolean>\",\n                \"isGenericMethodParameter\": \"<boolean>\",\n                \"isGenericType\": \"<boolean>\",\n                \"isGenericTypeDefinition\": \"<boolean>\",\n                \"isSZArray\": \"<boolean>\",\n                \"isVariableBoundArray\": \"<boolean>\",\n                \"isByRefLike\": \"<boolean>\",\n                \"isFunctionPointer\": \"<boolean>\",\n                \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                \"hasElementType\": \"<boolean>\",\n                \"genericTypeArguments\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ],\n                \"genericParameterPosition\": \"<integer>\",\n                \"genericParameterAttributes\": 3,\n                \"attributes\": 6,\n                \"isAbstract\": \"<boolean>\",\n                \"isImport\": \"<boolean>\",\n                \"isSealed\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isClass\": \"<boolean>\",\n                \"isNestedAssembly\": \"<boolean>\",\n                \"isNestedFamANDAssem\": \"<boolean>\",\n                \"isNestedFamily\": \"<boolean>\",\n                \"isNestedFamORAssem\": \"<boolean>\",\n                \"isNestedPrivate\": \"<boolean>\",\n                \"isNestedPublic\": \"<boolean>\",\n                \"isNotPublic\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isAutoLayout\": \"<boolean>\",\n                \"isExplicitLayout\": \"<boolean>\",\n                \"isLayoutSequential\": \"<boolean>\",\n                \"isAnsiClass\": \"<boolean>\",\n                \"isAutoClass\": \"<boolean>\",\n                \"isUnicodeClass\": \"<boolean>\",\n                \"isCOMObject\": \"<boolean>\",\n                \"isContextful\": \"<boolean>\",\n                \"isEnum\": \"<boolean>\",\n                \"isMarshalByRef\": \"<boolean>\",\n                \"isPrimitive\": \"<boolean>\",\n                \"isValueType\": \"<boolean>\",\n                \"isSignatureType\": \"<boolean>\",\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"structLayoutAttribute\": {\n                  \"typeId\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"value\": 3\n                },\n                \"typeInitializer\": {\n                  \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                },\n                \"typeHandle\": {\n                  \"value\": {}\n                },\n                \"guid\": \"<uuid>\",\n                \"baseType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"isSerializable\": \"<boolean>\",\n                \"containsGenericParameters\": \"<boolean>\",\n                \"isVisible\": \"<boolean>\",\n                \"genericTypeParameters\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ],\n                \"declaredConstructors\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                  }\n                ],\n                \"declaredEvents\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 2,\n                    \"attributes\": 1024,\n                    \"isSpecialName\": \"<boolean>\",\n                    \"addMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 53248,\n                      \"methodImplementationFlags\": 4,\n                      \"callingConvention\": 64,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 2,\n                      \"returnParameter\": {\n                        \"attributes\": 8192,\n                        \"member\": {\n                          \"memberType\": 8,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"removeMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 2048,\n                      \"methodImplementationFlags\": 4096,\n                      \"callingConvention\": 64,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 191,\n                      \"returnParameter\": {\n                        \"attributes\": 1,\n                        \"member\": {\n                          \"memberType\": 4,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"raiseMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 0,\n                      \"methodImplementationFlags\": 65535,\n                      \"callingConvention\": 3,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 64,\n                      \"returnParameter\": {\n                        \"attributes\": 32768,\n                        \"member\": {\n                          \"memberType\": 128,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"isMulticast\": \"<boolean>\",\n                    \"eventHandlerType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  }\n                ],\n                \"declaredFields\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 128,\n                    \"attributes\": 4096,\n                    \"fieldType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"isInitOnly\": \"<boolean>\",\n                    \"isLiteral\": \"<boolean>\",\n                    \"isNotSerialized\": \"<boolean>\",\n                    \"isPinvokeImpl\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"fieldHandle\": {\n                      \"value\": {}\n                    }\n                  }\n                ],\n                \"declaredMembers\": [\n                  {\n                    \"memberType\": 128,\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\"\n                  }\n                ],\n                \"declaredMethods\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 4,\n                    \"methodImplementationFlags\": 65535,\n                    \"callingConvention\": 2,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 64,\n                    \"returnParameter\": {\n                      \"attributes\": 8192,\n                      \"member\": {\n                        \"memberType\": 8,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  }\n                ],\n                \"declaredNestedTypes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                  }\n                ],\n                \"declaredProperties\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 32,\n                    \"propertyType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"attributes\": 32768,\n                    \"isSpecialName\": \"<boolean>\",\n                    \"canRead\": \"<boolean>\",\n                    \"canWrite\": \"<boolean>\",\n                    \"getMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 1024,\n                      \"methodImplementationFlags\": 4,\n                      \"callingConvention\": 1,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 4,\n                      \"returnParameter\": {\n                        \"attributes\": 32768,\n                        \"member\": {\n                          \"memberType\": 8,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"setMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 256,\n                      \"methodImplementationFlags\": 512,\n                      \"callingConvention\": 1,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 64,\n                      \"returnParameter\": {\n                        \"attributes\": 4,\n                        \"member\": {\n                          \"memberType\": 191,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    }\n                  }\n                ],\n                \"implementedInterfaces\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ]\n              }\n            ],\n            \"exportedTypes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ],\n            \"codeBase\": \"<string>\",\n            \"entryPoint\": {\n              \"name\": \"<string>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\",\n              \"attributes\": 7,\n              \"methodImplementationFlags\": 8,\n              \"callingConvention\": 2,\n              \"isAbstract\": \"<boolean>\",\n              \"isConstructor\": \"<boolean>\",\n              \"isFinal\": \"<boolean>\",\n              \"isHideBySig\": \"<boolean>\",\n              \"isSpecialName\": \"<boolean>\",\n              \"isStatic\": \"<boolean>\",\n              \"isVirtual\": \"<boolean>\",\n              \"isAssembly\": \"<boolean>\",\n              \"isFamily\": \"<boolean>\",\n              \"isFamilyAndAssembly\": \"<boolean>\",\n              \"isFamilyOrAssembly\": \"<boolean>\",\n              \"isPrivate\": \"<boolean>\",\n              \"isPublic\": \"<boolean>\",\n              \"isConstructedGenericMethod\": \"<boolean>\",\n              \"isGenericMethod\": \"<boolean>\",\n              \"isGenericMethodDefinition\": \"<boolean>\",\n              \"containsGenericParameters\": \"<boolean>\",\n              \"methodHandle\": {\n                \"value\": {}\n              },\n              \"isSecurityCritical\": \"<boolean>\",\n              \"isSecuritySafeCritical\": \"<boolean>\",\n              \"isSecurityTransparent\": \"<boolean>\",\n              \"memberType\": 4,\n              \"returnParameter\": {\n                \"attributes\": 16384,\n                \"member\": {\n                  \"memberType\": 4,\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"name\": \"<string>\",\n                \"parameterType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"position\": \"<integer>\",\n                \"isIn\": \"<boolean>\",\n                \"isLcid\": \"<boolean>\",\n                \"isOptional\": \"<boolean>\",\n                \"isOut\": \"<boolean>\",\n                \"isRetval\": \"<boolean>\",\n                \"defaultValue\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"rawDefaultValue\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"hasDefaultValue\": \"<boolean>\",\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"metadataToken\": \"<integer>\"\n              },\n              \"returnType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"returnTypeCustomAttributes\": {}\n            },\n            \"fullName\": \"<string>\",\n            \"imageRuntimeVersion\": \"<string>\",\n            \"isDynamic\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"reflectionOnly\": \"<boolean>\",\n            \"isCollectible\": \"<boolean>\",\n            \"isFullyTrusted\": \"<boolean>\",\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"escapedCodeBase\": \"<string>\",\n            \"manifestModule\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"modules\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              }\n            ],\n            \"globalAssemblyCache\": \"<boolean>\",\n            \"hostContext\": \"<long>\",\n            \"securityRuleSet\": 1\n          },\n          \"fullyQualifiedName\": \"<string>\",\n          \"name\": \"<string>\",\n          \"mdStreamVersion\": \"<integer>\",\n          \"moduleVersionId\": \"<uuid>\",\n          \"scopeName\": \"<string>\",\n          \"moduleHandle\": {\n            \"mdStreamVersion\": \"<integer>\"\n          },\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"metadataToken\": \"<integer>\"\n        },\n        \"customAttributes\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n          }\n        ],\n        \"isCollectible\": \"<boolean>\",\n        \"metadataToken\": \"<integer>\",\n        \"attributes\": 256,\n        \"methodImplementationFlags\": 64,\n        \"callingConvention\": 32,\n        \"isAbstract\": \"<boolean>\",\n        \"isConstructor\": \"<boolean>\",\n        \"isFinal\": \"<boolean>\",\n        \"isHideBySig\": \"<boolean>\",\n        \"isSpecialName\": \"<boolean>\",\n        \"isStatic\": \"<boolean>\",\n        \"isVirtual\": \"<boolean>\",\n        \"isAssembly\": \"<boolean>\",\n        \"isFamily\": \"<boolean>\",\n        \"isFamilyAndAssembly\": \"<boolean>\",\n        \"isFamilyOrAssembly\": \"<boolean>\",\n        \"isPrivate\": \"<boolean>\",\n        \"isPublic\": \"<boolean>\",\n        \"isConstructedGenericMethod\": \"<boolean>\",\n        \"isGenericMethod\": \"<boolean>\",\n        \"isGenericMethodDefinition\": \"<boolean>\",\n        \"containsGenericParameters\": \"<boolean>\",\n        \"methodHandle\": {\n          \"value\": {}\n        },\n        \"isSecurityCritical\": \"<boolean>\",\n        \"isSecuritySafeCritical\": \"<boolean>\",\n        \"isSecurityTransparent\": \"<boolean>\",\n        \"memberType\": 128\n      },\n      \"typeHandle\": {\n        \"value\": {}\n      },\n      \"guid\": \"<uuid>\",\n      \"baseType\": {\n        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n      },\n      \"isSerializable\": \"<boolean>\",\n      \"containsGenericParameters\": \"<boolean>\",\n      \"isVisible\": \"<boolean>\"\n    },\n    \"reflectedType\": {\n      \"name\": \"<string>\",\n      \"customAttributes\": [\n        {\n          \"attributeType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"constructor\": {\n            \"name\": \"<string>\",\n            \"declaringType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"reflectedType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"module\": {\n              \"assembly\": {\n                \"definedTypes\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 191,\n                    \"namespace\": \"<string>\",\n                    \"assemblyQualifiedName\": \"<string>\",\n                    \"fullName\": \"<string>\",\n                    \"assembly\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"isInterface\": \"<boolean>\",\n                    \"isNested\": \"<boolean>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"declaringMethod\": {\n                      \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"underlyingSystemType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"isTypeDefinition\": \"<boolean>\",\n                    \"isArray\": \"<boolean>\",\n                    \"isByRef\": \"<boolean>\",\n                    \"isPointer\": \"<boolean>\",\n                    \"isConstructedGenericType\": \"<boolean>\",\n                    \"isGenericParameter\": \"<boolean>\",\n                    \"isGenericTypeParameter\": \"<boolean>\",\n                    \"isGenericMethodParameter\": \"<boolean>\",\n                    \"isGenericType\": \"<boolean>\",\n                    \"isGenericTypeDefinition\": \"<boolean>\",\n                    \"isSZArray\": \"<boolean>\",\n                    \"isVariableBoundArray\": \"<boolean>\",\n                    \"isByRefLike\": \"<boolean>\",\n                    \"isFunctionPointer\": \"<boolean>\",\n                    \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                    \"hasElementType\": \"<boolean>\",\n                    \"genericTypeArguments\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    ],\n                    \"genericParameterPosition\": \"<integer>\",\n                    \"genericParameterAttributes\": 28,\n                    \"attributes\": 7,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isImport\": \"<boolean>\",\n                    \"isSealed\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isClass\": \"<boolean>\",\n                    \"isNestedAssembly\": \"<boolean>\",\n                    \"isNestedFamANDAssem\": \"<boolean>\",\n                    \"isNestedFamily\": \"<boolean>\",\n                    \"isNestedFamORAssem\": \"<boolean>\",\n                    \"isNestedPrivate\": \"<boolean>\",\n                    \"isNestedPublic\": \"<boolean>\",\n                    \"isNotPublic\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isAutoLayout\": \"<boolean>\",\n                    \"isExplicitLayout\": \"<boolean>\",\n                    \"isLayoutSequential\": \"<boolean>\",\n                    \"isAnsiClass\": \"<boolean>\",\n                    \"isAutoClass\": \"<boolean>\",\n                    \"isUnicodeClass\": \"<boolean>\",\n                    \"isCOMObject\": \"<boolean>\",\n                    \"isContextful\": \"<boolean>\",\n                    \"isEnum\": \"<boolean>\",\n                    \"isMarshalByRef\": \"<boolean>\",\n                    \"isPrimitive\": \"<boolean>\",\n                    \"isValueType\": \"<boolean>\",\n                    \"isSignatureType\": \"<boolean>\",\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"structLayoutAttribute\": {\n                      \"typeId\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"value\": 0\n                    },\n                    \"typeInitializer\": {\n                      \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                    },\n                    \"typeHandle\": {\n                      \"value\": {}\n                    },\n                    \"guid\": \"<uuid>\",\n                    \"baseType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"isSerializable\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"isVisible\": \"<boolean>\",\n                    \"genericTypeParameters\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    ],\n                    \"declaredConstructors\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                      }\n                    ],\n                    \"declaredEvents\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"memberType\": 2,\n                        \"attributes\": 0,\n                        \"isSpecialName\": \"<boolean>\",\n                        \"addMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 1024,\n                          \"methodImplementationFlags\": 0,\n                          \"callingConvention\": 3,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 4,\n                          \"returnParameter\": {\n                            \"attributes\": 32768,\n                            \"member\": {\n                              \"memberType\": 1,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"removeMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 0,\n                          \"methodImplementationFlags\": 3,\n                          \"callingConvention\": 64,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 2,\n                          \"returnParameter\": {\n                            \"attributes\": 1,\n                            \"member\": {\n                              \"memberType\": 128,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"raiseMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 53248,\n                          \"methodImplementationFlags\": 8,\n                          \"callingConvention\": 64,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 32,\n                          \"returnParameter\": {\n                            \"attributes\": 16,\n                            \"member\": {\n                              \"memberType\": 64,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"isMulticast\": \"<boolean>\",\n                        \"eventHandlerType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        }\n                      }\n                    ],\n                    \"declaredFields\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"memberType\": 8,\n                        \"attributes\": 38144,\n                        \"fieldType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"isInitOnly\": \"<boolean>\",\n                        \"isLiteral\": \"<boolean>\",\n                        \"isNotSerialized\": \"<boolean>\",\n                        \"isPinvokeImpl\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"fieldHandle\": {\n                          \"value\": {}\n                        }\n                      }\n                    ],\n                    \"declaredMembers\": [\n                      {\n                        \"memberType\": 128,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      }\n                    ],\n                    \"declaredMethods\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 2,\n                        \"methodImplementationFlags\": 32,\n                        \"callingConvention\": 3,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 1,\n                        \"returnParameter\": {\n                          \"attributes\": 2,\n                          \"member\": {\n                            \"memberType\": 191,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      }\n                    ],\n                    \"declaredNestedTypes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                      }\n                    ],\n                    \"declaredProperties\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"memberType\": 8,\n                        \"propertyType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"attributes\": 4096,\n                        \"isSpecialName\": \"<boolean>\",\n                        \"canRead\": \"<boolean>\",\n                        \"canWrite\": \"<boolean>\",\n                        \"getMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 16,\n                          \"methodImplementationFlags\": 4096,\n                          \"callingConvention\": 2,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 16,\n                          \"returnParameter\": {\n                            \"attributes\": 32768,\n                            \"member\": {\n                              \"memberType\": 32,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"setMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 4096,\n                          \"methodImplementationFlags\": 0,\n                          \"callingConvention\": 2,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 64,\n                          \"returnParameter\": {\n                            \"attributes\": 0,\n                            \"member\": {\n                              \"memberType\": 8,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        }\n                      }\n                    ],\n                    \"implementedInterfaces\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    ]\n                  }\n                ],\n                \"exportedTypes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ],\n                \"codeBase\": \"<string>\",\n                \"entryPoint\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 32768,\n                  \"methodImplementationFlags\": 0,\n                  \"callingConvention\": 32,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 1,\n                  \"returnParameter\": {\n                    \"attributes\": 61440,\n                    \"member\": {\n                      \"memberType\": 2,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"fullName\": \"<string>\",\n                \"imageRuntimeVersion\": \"<string>\",\n                \"isDynamic\": \"<boolean>\",\n                \"location\": \"<string>\",\n                \"reflectionOnly\": \"<boolean>\",\n                \"isCollectible\": \"<boolean>\",\n                \"isFullyTrusted\": \"<boolean>\",\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"escapedCodeBase\": \"<string>\",\n                \"manifestModule\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"modules\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  }\n                ],\n                \"globalAssemblyCache\": \"<boolean>\",\n                \"hostContext\": \"<long>\",\n                \"securityRuleSet\": 0\n              },\n              \"fullyQualifiedName\": \"<string>\",\n              \"name\": \"<string>\",\n              \"mdStreamVersion\": \"<integer>\",\n              \"moduleVersionId\": \"<uuid>\",\n              \"scopeName\": \"<string>\",\n              \"moduleHandle\": {\n                \"mdStreamVersion\": \"<integer>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"metadataToken\": \"<integer>\"\n            },\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"isCollectible\": \"<boolean>\",\n            \"metadataToken\": \"<integer>\",\n            \"attributes\": 53248,\n            \"methodImplementationFlags\": 3,\n            \"callingConvention\": 2,\n            \"isAbstract\": \"<boolean>\",\n            \"isConstructor\": \"<boolean>\",\n            \"isFinal\": \"<boolean>\",\n            \"isHideBySig\": \"<boolean>\",\n            \"isSpecialName\": \"<boolean>\",\n            \"isStatic\": \"<boolean>\",\n            \"isVirtual\": \"<boolean>\",\n            \"isAssembly\": \"<boolean>\",\n            \"isFamily\": \"<boolean>\",\n            \"isFamilyAndAssembly\": \"<boolean>\",\n            \"isFamilyOrAssembly\": \"<boolean>\",\n            \"isPrivate\": \"<boolean>\",\n            \"isPublic\": \"<boolean>\",\n            \"isConstructedGenericMethod\": \"<boolean>\",\n            \"isGenericMethod\": \"<boolean>\",\n            \"isGenericMethodDefinition\": \"<boolean>\",\n            \"containsGenericParameters\": \"<boolean>\",\n            \"methodHandle\": {\n              \"value\": {}\n            },\n            \"isSecurityCritical\": \"<boolean>\",\n            \"isSecuritySafeCritical\": \"<boolean>\",\n            \"isSecurityTransparent\": \"<boolean>\",\n            \"memberType\": 1\n          },\n          \"constructorArguments\": [\n            {\n              \"argumentType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"value\": {\n                \"nullable\": true\n              }\n            }\n          ],\n          \"namedArguments\": [\n            {\n              \"memberInfo\": {\n                \"memberType\": 32,\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\"\n              },\n              \"typedValue\": {\n                \"argumentType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"value\": {\n                  \"nullable\": true\n                }\n              },\n              \"memberName\": \"<string>\",\n              \"isField\": \"<boolean>\"\n            }\n          ]\n        }\n      ],\n      \"isCollectible\": \"<boolean>\",\n      \"metadataToken\": \"<integer>\",\n      \"memberType\": 4,\n      \"namespace\": \"<string>\",\n      \"assemblyQualifiedName\": \"<string>\",\n      \"fullName\": \"<string>\",\n      \"assembly\": {\n        \"definedTypes\": [\n          {\n            \"name\": \"<string>\",\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"isCollectible\": \"<boolean>\",\n            \"metadataToken\": \"<integer>\",\n            \"memberType\": 4,\n            \"namespace\": \"<string>\",\n            \"assemblyQualifiedName\": \"<string>\",\n            \"fullName\": \"<string>\",\n            \"assembly\": {\n              \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n            },\n            \"module\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"isInterface\": \"<boolean>\",\n            \"isNested\": \"<boolean>\",\n            \"declaringType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"declaringMethod\": {\n              \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n            },\n            \"reflectedType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"underlyingSystemType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"isTypeDefinition\": \"<boolean>\",\n            \"isArray\": \"<boolean>\",\n            \"isByRef\": \"<boolean>\",\n            \"isPointer\": \"<boolean>\",\n            \"isConstructedGenericType\": \"<boolean>\",\n            \"isGenericParameter\": \"<boolean>\",\n            \"isGenericTypeParameter\": \"<boolean>\",\n            \"isGenericMethodParameter\": \"<boolean>\",\n            \"isGenericType\": \"<boolean>\",\n            \"isGenericTypeDefinition\": \"<boolean>\",\n            \"isSZArray\": \"<boolean>\",\n            \"isVariableBoundArray\": \"<boolean>\",\n            \"isByRefLike\": \"<boolean>\",\n            \"isFunctionPointer\": \"<boolean>\",\n            \"isUnmanagedFunctionPointer\": \"<boolean>\",\n            \"hasElementType\": \"<boolean>\",\n            \"genericTypeArguments\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ],\n            \"genericParameterPosition\": \"<integer>\",\n            \"genericParameterAttributes\": 2,\n            \"attributes\": 7,\n            \"isAbstract\": \"<boolean>\",\n            \"isImport\": \"<boolean>\",\n            \"isSealed\": \"<boolean>\",\n            \"isSpecialName\": \"<boolean>\",\n            \"isClass\": \"<boolean>\",\n            \"isNestedAssembly\": \"<boolean>\",\n            \"isNestedFamANDAssem\": \"<boolean>\",\n            \"isNestedFamily\": \"<boolean>\",\n            \"isNestedFamORAssem\": \"<boolean>\",\n            \"isNestedPrivate\": \"<boolean>\",\n            \"isNestedPublic\": \"<boolean>\",\n            \"isNotPublic\": \"<boolean>\",\n            \"isPublic\": \"<boolean>\",\n            \"isAutoLayout\": \"<boolean>\",\n            \"isExplicitLayout\": \"<boolean>\",\n            \"isLayoutSequential\": \"<boolean>\",\n            \"isAnsiClass\": \"<boolean>\",\n            \"isAutoClass\": \"<boolean>\",\n            \"isUnicodeClass\": \"<boolean>\",\n            \"isCOMObject\": \"<boolean>\",\n            \"isContextful\": \"<boolean>\",\n            \"isEnum\": \"<boolean>\",\n            \"isMarshalByRef\": \"<boolean>\",\n            \"isPrimitive\": \"<boolean>\",\n            \"isValueType\": \"<boolean>\",\n            \"isSignatureType\": \"<boolean>\",\n            \"isSecurityCritical\": \"<boolean>\",\n            \"isSecuritySafeCritical\": \"<boolean>\",\n            \"isSecurityTransparent\": \"<boolean>\",\n            \"structLayoutAttribute\": {\n              \"typeId\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"value\": 2\n            },\n            \"typeInitializer\": {\n              \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n            },\n            \"typeHandle\": {\n              \"value\": {}\n            },\n            \"guid\": \"<uuid>\",\n            \"baseType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"isSerializable\": \"<boolean>\",\n            \"containsGenericParameters\": \"<boolean>\",\n            \"isVisible\": \"<boolean>\",\n            \"genericTypeParameters\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ],\n            \"declaredConstructors\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n              }\n            ],\n            \"declaredEvents\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 1,\n                \"attributes\": 0,\n                \"isSpecialName\": \"<boolean>\",\n                \"addMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 2048,\n                  \"methodImplementationFlags\": 4,\n                  \"callingConvention\": 2,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 8,\n                  \"returnParameter\": {\n                    \"attributes\": 8,\n                    \"member\": {\n                      \"memberType\": 191,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"removeMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 256,\n                  \"methodImplementationFlags\": 64,\n                  \"callingConvention\": 2,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 16,\n                  \"returnParameter\": {\n                    \"attributes\": 4096,\n                    \"member\": {\n                      \"memberType\": 32,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"raiseMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 64,\n                  \"methodImplementationFlags\": 4096,\n                  \"callingConvention\": 3,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 128,\n                  \"returnParameter\": {\n                    \"attributes\": 61440,\n                    \"member\": {\n                      \"memberType\": 32,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"isMulticast\": \"<boolean>\",\n                \"eventHandlerType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              }\n            ],\n            \"declaredFields\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 1,\n                \"attributes\": 2,\n                \"fieldType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"isInitOnly\": \"<boolean>\",\n                \"isLiteral\": \"<boolean>\",\n                \"isNotSerialized\": \"<boolean>\",\n                \"isPinvokeImpl\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isStatic\": \"<boolean>\",\n                \"isAssembly\": \"<boolean>\",\n                \"isFamily\": \"<boolean>\",\n                \"isFamilyAndAssembly\": \"<boolean>\",\n                \"isFamilyOrAssembly\": \"<boolean>\",\n                \"isPrivate\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"fieldHandle\": {\n                  \"value\": {}\n                }\n              }\n            ],\n            \"declaredMembers\": [\n              {\n                \"memberType\": 32,\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\"\n              }\n            ],\n            \"declaredMethods\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"attributes\": 16384,\n                \"methodImplementationFlags\": 1,\n                \"callingConvention\": 64,\n                \"isAbstract\": \"<boolean>\",\n                \"isConstructor\": \"<boolean>\",\n                \"isFinal\": \"<boolean>\",\n                \"isHideBySig\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isStatic\": \"<boolean>\",\n                \"isVirtual\": \"<boolean>\",\n                \"isAssembly\": \"<boolean>\",\n                \"isFamily\": \"<boolean>\",\n                \"isFamilyAndAssembly\": \"<boolean>\",\n                \"isFamilyOrAssembly\": \"<boolean>\",\n                \"isPrivate\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isConstructedGenericMethod\": \"<boolean>\",\n                \"isGenericMethod\": \"<boolean>\",\n                \"isGenericMethodDefinition\": \"<boolean>\",\n                \"containsGenericParameters\": \"<boolean>\",\n                \"methodHandle\": {\n                  \"value\": {}\n                },\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"memberType\": 128,\n                \"returnParameter\": {\n                  \"attributes\": 16384,\n                  \"member\": {\n                    \"memberType\": 64,\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"name\": \"<string>\",\n                  \"parameterType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"position\": \"<integer>\",\n                  \"isIn\": \"<boolean>\",\n                  \"isLcid\": \"<boolean>\",\n                  \"isOptional\": \"<boolean>\",\n                  \"isOut\": \"<boolean>\",\n                  \"isRetval\": \"<boolean>\",\n                  \"defaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"rawDefaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"hasDefaultValue\": \"<boolean>\",\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"returnType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"returnTypeCustomAttributes\": {}\n              }\n            ],\n            \"declaredNestedTypes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n              }\n            ],\n            \"declaredProperties\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 191,\n                \"propertyType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"attributes\": 16384,\n                \"isSpecialName\": \"<boolean>\",\n                \"canRead\": \"<boolean>\",\n                \"canWrite\": \"<boolean>\",\n                \"getMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 0,\n                  \"methodImplementationFlags\": 2,\n                  \"callingConvention\": 32,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 191,\n                  \"returnParameter\": {\n                    \"attributes\": 1,\n                    \"member\": {\n                      \"memberType\": 64,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"setMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 7,\n                  \"methodImplementationFlags\": 32,\n                  \"callingConvention\": 3,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 2,\n                  \"returnParameter\": {\n                    \"attributes\": 61440,\n                    \"member\": {\n                      \"memberType\": 4,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                }\n              }\n            ],\n            \"implementedInterfaces\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ]\n          }\n        ],\n        \"exportedTypes\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          }\n        ],\n        \"codeBase\": \"<string>\",\n        \"entryPoint\": {\n          \"name\": \"<string>\",\n          \"declaringType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"reflectedType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"module\": {\n            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n          },\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"isCollectible\": \"<boolean>\",\n          \"metadataToken\": \"<integer>\",\n          \"attributes\": 128,\n          \"methodImplementationFlags\": 65535,\n          \"callingConvention\": 1,\n          \"isAbstract\": \"<boolean>\",\n          \"isConstructor\": \"<boolean>\",\n          \"isFinal\": \"<boolean>\",\n          \"isHideBySig\": \"<boolean>\",\n          \"isSpecialName\": \"<boolean>\",\n          \"isStatic\": \"<boolean>\",\n          \"isVirtual\": \"<boolean>\",\n          \"isAssembly\": \"<boolean>\",\n          \"isFamily\": \"<boolean>\",\n          \"isFamilyAndAssembly\": \"<boolean>\",\n          \"isFamilyOrAssembly\": \"<boolean>\",\n          \"isPrivate\": \"<boolean>\",\n          \"isPublic\": \"<boolean>\",\n          \"isConstructedGenericMethod\": \"<boolean>\",\n          \"isGenericMethod\": \"<boolean>\",\n          \"isGenericMethodDefinition\": \"<boolean>\",\n          \"containsGenericParameters\": \"<boolean>\",\n          \"methodHandle\": {\n            \"value\": {}\n          },\n          \"isSecurityCritical\": \"<boolean>\",\n          \"isSecuritySafeCritical\": \"<boolean>\",\n          \"isSecurityTransparent\": \"<boolean>\",\n          \"memberType\": 64,\n          \"returnParameter\": {\n            \"attributes\": 16,\n            \"member\": {\n              \"memberType\": 2,\n              \"name\": \"<string>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\"\n            },\n            \"name\": \"<string>\",\n            \"parameterType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"position\": \"<integer>\",\n            \"isIn\": \"<boolean>\",\n            \"isLcid\": \"<boolean>\",\n            \"isOptional\": \"<boolean>\",\n            \"isOut\": \"<boolean>\",\n            \"isRetval\": \"<boolean>\",\n            \"defaultValue\": {\n              \"nullable\": true,\n              \"readOnly\": true\n            },\n            \"rawDefaultValue\": {\n              \"nullable\": true,\n              \"readOnly\": true\n            },\n            \"hasDefaultValue\": \"<boolean>\",\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"metadataToken\": \"<integer>\"\n          },\n          \"returnType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"returnTypeCustomAttributes\": {}\n        },\n        \"fullName\": \"<string>\",\n        \"imageRuntimeVersion\": \"<string>\",\n        \"isDynamic\": \"<boolean>\",\n        \"location\": \"<string>\",\n        \"reflectionOnly\": \"<boolean>\",\n        \"isCollectible\": \"<boolean>\",\n        \"isFullyTrusted\": \"<boolean>\",\n        \"customAttributes\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n          }\n        ],\n        \"escapedCodeBase\": \"<string>\",\n        \"manifestModule\": {\n          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n        },\n        \"modules\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n          }\n        ],\n        \"globalAssemblyCache\": \"<boolean>\",\n        \"hostContext\": \"<long>\",\n        \"securityRuleSet\": 2\n      },\n      \"module\": {\n        \"assembly\": {\n          \"definedTypes\": [\n            {\n              \"name\": \"<string>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\",\n              \"memberType\": 1,\n              \"namespace\": \"<string>\",\n              \"assemblyQualifiedName\": \"<string>\",\n              \"fullName\": \"<string>\",\n              \"assembly\": {\n                \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"isInterface\": \"<boolean>\",\n              \"isNested\": \"<boolean>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"declaringMethod\": {\n                \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"underlyingSystemType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"isTypeDefinition\": \"<boolean>\",\n              \"isArray\": \"<boolean>\",\n              \"isByRef\": \"<boolean>\",\n              \"isPointer\": \"<boolean>\",\n              \"isConstructedGenericType\": \"<boolean>\",\n              \"isGenericParameter\": \"<boolean>\",\n              \"isGenericTypeParameter\": \"<boolean>\",\n              \"isGenericMethodParameter\": \"<boolean>\",\n              \"isGenericType\": \"<boolean>\",\n              \"isGenericTypeDefinition\": \"<boolean>\",\n              \"isSZArray\": \"<boolean>\",\n              \"isVariableBoundArray\": \"<boolean>\",\n              \"isByRefLike\": \"<boolean>\",\n              \"isFunctionPointer\": \"<boolean>\",\n              \"isUnmanagedFunctionPointer\": \"<boolean>\",\n              \"hasElementType\": \"<boolean>\",\n              \"genericTypeArguments\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"genericParameterPosition\": \"<integer>\",\n              \"genericParameterAttributes\": 2,\n              \"attributes\": 16384,\n              \"isAbstract\": \"<boolean>\",\n              \"isImport\": \"<boolean>\",\n              \"isSealed\": \"<boolean>\",\n              \"isSpecialName\": \"<boolean>\",\n              \"isClass\": \"<boolean>\",\n              \"isNestedAssembly\": \"<boolean>\",\n              \"isNestedFamANDAssem\": \"<boolean>\",\n              \"isNestedFamily\": \"<boolean>\",\n              \"isNestedFamORAssem\": \"<boolean>\",\n              \"isNestedPrivate\": \"<boolean>\",\n              \"isNestedPublic\": \"<boolean>\",\n              \"isNotPublic\": \"<boolean>\",\n              \"isPublic\": \"<boolean>\",\n              \"isAutoLayout\": \"<boolean>\",\n              \"isExplicitLayout\": \"<boolean>\",\n              \"isLayoutSequential\": \"<boolean>\",\n              \"isAnsiClass\": \"<boolean>\",\n              \"isAutoClass\": \"<boolean>\",\n              \"isUnicodeClass\": \"<boolean>\",\n              \"isCOMObject\": \"<boolean>\",\n              \"isContextful\": \"<boolean>\",\n              \"isEnum\": \"<boolean>\",\n              \"isMarshalByRef\": \"<boolean>\",\n              \"isPrimitive\": \"<boolean>\",\n              \"isValueType\": \"<boolean>\",\n              \"isSignatureType\": \"<boolean>\",\n              \"isSecurityCritical\": \"<boolean>\",\n              \"isSecuritySafeCritical\": \"<boolean>\",\n              \"isSecurityTransparent\": \"<boolean>\",\n              \"structLayoutAttribute\": {\n                \"typeId\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"value\": 3\n              },\n              \"typeInitializer\": {\n                \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n              },\n              \"typeHandle\": {\n                \"value\": {}\n              },\n              \"guid\": \"<uuid>\",\n              \"baseType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"isSerializable\": \"<boolean>\",\n              \"containsGenericParameters\": \"<boolean>\",\n              \"isVisible\": \"<boolean>\",\n              \"genericTypeParameters\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"declaredConstructors\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                }\n              ],\n              \"declaredEvents\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 4,\n                  \"attributes\": 512,\n                  \"isSpecialName\": \"<boolean>\",\n                  \"addMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 16,\n                    \"methodImplementationFlags\": 0,\n                    \"callingConvention\": 64,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 191,\n                    \"returnParameter\": {\n                      \"attributes\": 16,\n                      \"member\": {\n                        \"memberType\": 128,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"removeMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 4,\n                    \"methodImplementationFlags\": 8,\n                    \"callingConvention\": 1,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 16,\n                    \"returnParameter\": {\n                      \"attributes\": 16,\n                      \"member\": {\n                        \"memberType\": 1,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"raiseMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 4,\n                    \"methodImplementationFlags\": 4,\n                    \"callingConvention\": 32,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 2,\n                    \"returnParameter\": {\n                      \"attributes\": 61440,\n                      \"member\": {\n                        \"memberType\": 4,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"isMulticast\": \"<boolean>\",\n                  \"eventHandlerType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                }\n              ],\n              \"declaredFields\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 8,\n                  \"attributes\": 512,\n                  \"fieldType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"isInitOnly\": \"<boolean>\",\n                  \"isLiteral\": \"<boolean>\",\n                  \"isNotSerialized\": \"<boolean>\",\n                  \"isPinvokeImpl\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"fieldHandle\": {\n                    \"value\": {}\n                  }\n                }\n              ],\n              \"declaredMembers\": [\n                {\n                  \"memberType\": 4,\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\"\n                }\n              ],\n              \"declaredMethods\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 8,\n                  \"methodImplementationFlags\": 16,\n                  \"callingConvention\": 2,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 64,\n                  \"returnParameter\": {\n                    \"attributes\": 8,\n                    \"member\": {\n                      \"memberType\": 128,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                }\n              ],\n              \"declaredNestedTypes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                }\n              ],\n              \"declaredProperties\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 16,\n                  \"propertyType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"attributes\": 62464,\n                  \"isSpecialName\": \"<boolean>\",\n                  \"canRead\": \"<boolean>\",\n                  \"canWrite\": \"<boolean>\",\n                  \"getMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 16,\n                    \"methodImplementationFlags\": 2,\n                    \"callingConvention\": 1,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 191,\n                    \"returnParameter\": {\n                      \"attributes\": 8,\n                      \"member\": {\n                        \"memberType\": 64,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"setMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 53248,\n                    \"methodImplementationFlags\": 32,\n                    \"callingConvention\": 3,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 16,\n                    \"returnParameter\": {\n                      \"attributes\": 32768,\n                      \"member\": {\n                        \"memberType\": 64,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  }\n                }\n              ],\n              \"implementedInterfaces\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ]\n            }\n          ],\n          \"exportedTypes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            }\n          ],\n          \"codeBase\": \"<string>\",\n          \"entryPoint\": {\n            \"name\": \"<string>\",\n            \"declaringType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"reflectedType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"module\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"isCollectible\": \"<boolean>\",\n            \"metadataToken\": \"<integer>\",\n            \"attributes\": 5,\n            \"methodImplementationFlags\": 32,\n            \"callingConvention\": 64,\n            \"isAbstract\": \"<boolean>\",\n            \"isConstructor\": \"<boolean>\",\n            \"isFinal\": \"<boolean>\",\n            \"isHideBySig\": \"<boolean>\",\n            \"isSpecialName\": \"<boolean>\",\n            \"isStatic\": \"<boolean>\",\n            \"isVirtual\": \"<boolean>\",\n            \"isAssembly\": \"<boolean>\",\n            \"isFamily\": \"<boolean>\",\n            \"isFamilyAndAssembly\": \"<boolean>\",\n            \"isFamilyOrAssembly\": \"<boolean>\",\n            \"isPrivate\": \"<boolean>\",\n            \"isPublic\": \"<boolean>\",\n            \"isConstructedGenericMethod\": \"<boolean>\",\n            \"isGenericMethod\": \"<boolean>\",\n            \"isGenericMethodDefinition\": \"<boolean>\",\n            \"containsGenericParameters\": \"<boolean>\",\n            \"methodHandle\": {\n              \"value\": {}\n            },\n            \"isSecurityCritical\": \"<boolean>\",\n            \"isSecuritySafeCritical\": \"<boolean>\",\n            \"isSecurityTransparent\": \"<boolean>\",\n            \"memberType\": 191,\n            \"returnParameter\": {\n              \"attributes\": 32768,\n              \"member\": {\n                \"memberType\": 4,\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\"\n              },\n              \"name\": \"<string>\",\n              \"parameterType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"position\": \"<integer>\",\n              \"isIn\": \"<boolean>\",\n              \"isLcid\": \"<boolean>\",\n              \"isOptional\": \"<boolean>\",\n              \"isOut\": \"<boolean>\",\n              \"isRetval\": \"<boolean>\",\n              \"defaultValue\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"rawDefaultValue\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"hasDefaultValue\": \"<boolean>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"metadataToken\": \"<integer>\"\n            },\n            \"returnType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"returnTypeCustomAttributes\": {}\n          },\n          \"fullName\": \"<string>\",\n          \"imageRuntimeVersion\": \"<string>\",\n          \"isDynamic\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"reflectionOnly\": \"<boolean>\",\n          \"isCollectible\": \"<boolean>\",\n          \"isFullyTrusted\": \"<boolean>\",\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"escapedCodeBase\": \"<string>\",\n          \"manifestModule\": {\n            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n          },\n          \"modules\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            }\n          ],\n          \"globalAssemblyCache\": \"<boolean>\",\n          \"hostContext\": \"<long>\",\n          \"securityRuleSet\": 1\n        },\n        \"fullyQualifiedName\": \"<string>\",\n        \"name\": \"<string>\",\n        \"mdStreamVersion\": \"<integer>\",\n        \"moduleVersionId\": \"<uuid>\",\n        \"scopeName\": \"<string>\",\n        \"moduleHandle\": {\n          \"mdStreamVersion\": \"<integer>\"\n        },\n        \"customAttributes\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n          }\n        ],\n        \"metadataToken\": \"<integer>\"\n      },\n      \"isInterface\": \"<boolean>\",\n      \"isNested\": \"<boolean>\",\n      \"declaringType\": {\n        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n      },\n      \"declaringMethod\": {\n        \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n      },\n      \"reflectedType\": {\n        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n      },\n      \"underlyingSystemType\": {\n        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n      },\n      \"isTypeDefinition\": \"<boolean>\",\n      \"isArray\": \"<boolean>\",\n      \"isByRef\": \"<boolean>\",\n      \"isPointer\": \"<boolean>\",\n      \"isConstructedGenericType\": \"<boolean>\",\n      \"isGenericParameter\": \"<boolean>\",\n      \"isGenericTypeParameter\": \"<boolean>\",\n      \"isGenericMethodParameter\": \"<boolean>\",\n      \"isGenericType\": \"<boolean>\",\n      \"isGenericTypeDefinition\": \"<boolean>\",\n      \"isSZArray\": \"<boolean>\",\n      \"isVariableBoundArray\": \"<boolean>\",\n      \"isByRefLike\": \"<boolean>\",\n      \"isFunctionPointer\": \"<boolean>\",\n      \"isUnmanagedFunctionPointer\": \"<boolean>\",\n      \"hasElementType\": \"<boolean>\",\n      \"genericTypeArguments\": [\n        {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        }\n      ],\n      \"genericParameterPosition\": \"<integer>\",\n      \"genericParameterAttributes\": 32,\n      \"attributes\": 4096,\n      \"isAbstract\": \"<boolean>\",\n      \"isImport\": \"<boolean>\",\n      \"isSealed\": \"<boolean>\",\n      \"isSpecialName\": \"<boolean>\",\n      \"isClass\": \"<boolean>\",\n      \"isNestedAssembly\": \"<boolean>\",\n      \"isNestedFamANDAssem\": \"<boolean>\",\n      \"isNestedFamily\": \"<boolean>\",\n      \"isNestedFamORAssem\": \"<boolean>\",\n      \"isNestedPrivate\": \"<boolean>\",\n      \"isNestedPublic\": \"<boolean>\",\n      \"isNotPublic\": \"<boolean>\",\n      \"isPublic\": \"<boolean>\",\n      \"isAutoLayout\": \"<boolean>\",\n      \"isExplicitLayout\": \"<boolean>\",\n      \"isLayoutSequential\": \"<boolean>\",\n      \"isAnsiClass\": \"<boolean>\",\n      \"isAutoClass\": \"<boolean>\",\n      \"isUnicodeClass\": \"<boolean>\",\n      \"isCOMObject\": \"<boolean>\",\n      \"isContextful\": \"<boolean>\",\n      \"isEnum\": \"<boolean>\",\n      \"isMarshalByRef\": \"<boolean>\",\n      \"isPrimitive\": \"<boolean>\",\n      \"isValueType\": \"<boolean>\",\n      \"isSignatureType\": \"<boolean>\",\n      \"isSecurityCritical\": \"<boolean>\",\n      \"isSecuritySafeCritical\": \"<boolean>\",\n      \"isSecurityTransparent\": \"<boolean>\",\n      \"structLayoutAttribute\": {\n        \"typeId\": {\n          \"nullable\": true,\n          \"readOnly\": true\n        },\n        \"value\": 0\n      },\n      \"typeInitializer\": {\n        \"name\": \"<string>\",\n        \"declaringType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"reflectedType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"module\": {\n          \"assembly\": {\n            \"definedTypes\": [\n              {\n                \"name\": \"<string>\",\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 1,\n                \"namespace\": \"<string>\",\n                \"assemblyQualifiedName\": \"<string>\",\n                \"fullName\": \"<string>\",\n                \"assembly\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"isInterface\": \"<boolean>\",\n                \"isNested\": \"<boolean>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"declaringMethod\": {\n                  \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"underlyingSystemType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"isTypeDefinition\": \"<boolean>\",\n                \"isArray\": \"<boolean>\",\n                \"isByRef\": \"<boolean>\",\n                \"isPointer\": \"<boolean>\",\n                \"isConstructedGenericType\": \"<boolean>\",\n                \"isGenericParameter\": \"<boolean>\",\n                \"isGenericTypeParameter\": \"<boolean>\",\n                \"isGenericMethodParameter\": \"<boolean>\",\n                \"isGenericType\": \"<boolean>\",\n                \"isGenericTypeDefinition\": \"<boolean>\",\n                \"isSZArray\": \"<boolean>\",\n                \"isVariableBoundArray\": \"<boolean>\",\n                \"isByRefLike\": \"<boolean>\",\n                \"isFunctionPointer\": \"<boolean>\",\n                \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                \"hasElementType\": \"<boolean>\",\n                \"genericTypeArguments\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ],\n                \"genericParameterPosition\": \"<integer>\",\n                \"genericParameterAttributes\": 3,\n                \"attributes\": 1,\n                \"isAbstract\": \"<boolean>\",\n                \"isImport\": \"<boolean>\",\n                \"isSealed\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isClass\": \"<boolean>\",\n                \"isNestedAssembly\": \"<boolean>\",\n                \"isNestedFamANDAssem\": \"<boolean>\",\n                \"isNestedFamily\": \"<boolean>\",\n                \"isNestedFamORAssem\": \"<boolean>\",\n                \"isNestedPrivate\": \"<boolean>\",\n                \"isNestedPublic\": \"<boolean>\",\n                \"isNotPublic\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isAutoLayout\": \"<boolean>\",\n                \"isExplicitLayout\": \"<boolean>\",\n                \"isLayoutSequential\": \"<boolean>\",\n                \"isAnsiClass\": \"<boolean>\",\n                \"isAutoClass\": \"<boolean>\",\n                \"isUnicodeClass\": \"<boolean>\",\n                \"isCOMObject\": \"<boolean>\",\n                \"isContextful\": \"<boolean>\",\n                \"isEnum\": \"<boolean>\",\n                \"isMarshalByRef\": \"<boolean>\",\n                \"isPrimitive\": \"<boolean>\",\n                \"isValueType\": \"<boolean>\",\n                \"isSignatureType\": \"<boolean>\",\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"structLayoutAttribute\": {\n                  \"typeId\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"value\": 0\n                },\n                \"typeInitializer\": {\n                  \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                },\n                \"typeHandle\": {\n                  \"value\": {}\n                },\n                \"guid\": \"<uuid>\",\n                \"baseType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"isSerializable\": \"<boolean>\",\n                \"containsGenericParameters\": \"<boolean>\",\n                \"isVisible\": \"<boolean>\",\n                \"genericTypeParameters\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ],\n                \"declaredConstructors\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                  }\n                ],\n                \"declaredEvents\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 16,\n                    \"attributes\": 0,\n                    \"isSpecialName\": \"<boolean>\",\n                    \"addMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 4096,\n                      \"methodImplementationFlags\": 8,\n                      \"callingConvention\": 32,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 64,\n                      \"returnParameter\": {\n                        \"attributes\": 8192,\n                        \"member\": {\n                          \"memberType\": 16,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"removeMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 8,\n                      \"methodImplementationFlags\": 128,\n                      \"callingConvention\": 32,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 2,\n                      \"returnParameter\": {\n                        \"attributes\": 0,\n                        \"member\": {\n                          \"memberType\": 16,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"raiseMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 7,\n                      \"methodImplementationFlags\": 2,\n                      \"callingConvention\": 2,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 64,\n                      \"returnParameter\": {\n                        \"attributes\": 2,\n                        \"member\": {\n                          \"memberType\": 2,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"isMulticast\": \"<boolean>\",\n                    \"eventHandlerType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  }\n                ],\n                \"declaredFields\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 64,\n                    \"attributes\": 8192,\n                    \"fieldType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"isInitOnly\": \"<boolean>\",\n                    \"isLiteral\": \"<boolean>\",\n                    \"isNotSerialized\": \"<boolean>\",\n                    \"isPinvokeImpl\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"fieldHandle\": {\n                      \"value\": {}\n                    }\n                  }\n                ],\n                \"declaredMembers\": [\n                  {\n                    \"memberType\": 16,\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\"\n                  }\n                ],\n                \"declaredMethods\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 16384,\n                    \"methodImplementationFlags\": 128,\n                    \"callingConvention\": 3,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 64,\n                    \"returnParameter\": {\n                      \"attributes\": 32768,\n                      \"member\": {\n                        \"memberType\": 4,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  }\n                ],\n                \"declaredNestedTypes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                  }\n                ],\n                \"declaredProperties\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 16,\n                    \"propertyType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"attributes\": 0,\n                    \"isSpecialName\": \"<boolean>\",\n                    \"canRead\": \"<boolean>\",\n                    \"canWrite\": \"<boolean>\",\n                    \"getMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 5,\n                      \"methodImplementationFlags\": 16,\n                      \"callingConvention\": 3,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 8,\n                      \"returnParameter\": {\n                        \"attributes\": 16384,\n                        \"member\": {\n                          \"memberType\": 1,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"setMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 16384,\n                      \"methodImplementationFlags\": 8,\n                      \"callingConvention\": 32,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 128,\n                      \"returnParameter\": {\n                        \"attributes\": 2,\n                        \"member\": {\n                          \"memberType\": 16,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    }\n                  }\n                ],\n                \"implementedInterfaces\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ]\n              }\n            ],\n            \"exportedTypes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ],\n            \"codeBase\": \"<string>\",\n            \"entryPoint\": {\n              \"name\": \"<string>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\",\n              \"attributes\": 32,\n              \"methodImplementationFlags\": 65535,\n              \"callingConvention\": 64,\n              \"isAbstract\": \"<boolean>\",\n              \"isConstructor\": \"<boolean>\",\n              \"isFinal\": \"<boolean>\",\n              \"isHideBySig\": \"<boolean>\",\n              \"isSpecialName\": \"<boolean>\",\n              \"isStatic\": \"<boolean>\",\n              \"isVirtual\": \"<boolean>\",\n              \"isAssembly\": \"<boolean>\",\n              \"isFamily\": \"<boolean>\",\n              \"isFamilyAndAssembly\": \"<boolean>\",\n              \"isFamilyOrAssembly\": \"<boolean>\",\n              \"isPrivate\": \"<boolean>\",\n              \"isPublic\": \"<boolean>\",\n              \"isConstructedGenericMethod\": \"<boolean>\",\n              \"isGenericMethod\": \"<boolean>\",\n              \"isGenericMethodDefinition\": \"<boolean>\",\n              \"containsGenericParameters\": \"<boolean>\",\n              \"methodHandle\": {\n                \"value\": {}\n              },\n              \"isSecurityCritical\": \"<boolean>\",\n              \"isSecuritySafeCritical\": \"<boolean>\",\n              \"isSecurityTransparent\": \"<boolean>\",\n              \"memberType\": 64,\n              \"returnParameter\": {\n                \"attributes\": 16384,\n                \"member\": {\n                  \"memberType\": 64,\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"name\": \"<string>\",\n                \"parameterType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"position\": \"<integer>\",\n                \"isIn\": \"<boolean>\",\n                \"isLcid\": \"<boolean>\",\n                \"isOptional\": \"<boolean>\",\n                \"isOut\": \"<boolean>\",\n                \"isRetval\": \"<boolean>\",\n                \"defaultValue\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"rawDefaultValue\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"hasDefaultValue\": \"<boolean>\",\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"metadataToken\": \"<integer>\"\n              },\n              \"returnType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"returnTypeCustomAttributes\": {}\n            },\n            \"fullName\": \"<string>\",\n            \"imageRuntimeVersion\": \"<string>\",\n            \"isDynamic\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"reflectionOnly\": \"<boolean>\",\n            \"isCollectible\": \"<boolean>\",\n            \"isFullyTrusted\": \"<boolean>\",\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"escapedCodeBase\": \"<string>\",\n            \"manifestModule\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"modules\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              }\n            ],\n            \"globalAssemblyCache\": \"<boolean>\",\n            \"hostContext\": \"<long>\",\n            \"securityRuleSet\": 1\n          },\n          \"fullyQualifiedName\": \"<string>\",\n          \"name\": \"<string>\",\n          \"mdStreamVersion\": \"<integer>\",\n          \"moduleVersionId\": \"<uuid>\",\n          \"scopeName\": \"<string>\",\n          \"moduleHandle\": {\n            \"mdStreamVersion\": \"<integer>\"\n          },\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"metadataToken\": \"<integer>\"\n        },\n        \"customAttributes\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n          }\n        ],\n        \"isCollectible\": \"<boolean>\",\n        \"metadataToken\": \"<integer>\",\n        \"attributes\": 1,\n        \"methodImplementationFlags\": 0,\n        \"callingConvention\": 2,\n        \"isAbstract\": \"<boolean>\",\n        \"isConstructor\": \"<boolean>\",\n        \"isFinal\": \"<boolean>\",\n        \"isHideBySig\": \"<boolean>\",\n        \"isSpecialName\": \"<boolean>\",\n        \"isStatic\": \"<boolean>\",\n        \"isVirtual\": \"<boolean>\",\n        \"isAssembly\": \"<boolean>\",\n        \"isFamily\": \"<boolean>\",\n        \"isFamilyAndAssembly\": \"<boolean>\",\n        \"isFamilyOrAssembly\": \"<boolean>\",\n        \"isPrivate\": \"<boolean>\",\n        \"isPublic\": \"<boolean>\",\n        \"isConstructedGenericMethod\": \"<boolean>\",\n        \"isGenericMethod\": \"<boolean>\",\n        \"isGenericMethodDefinition\": \"<boolean>\",\n        \"containsGenericParameters\": \"<boolean>\",\n        \"methodHandle\": {\n          \"value\": {}\n        },\n        \"isSecurityCritical\": \"<boolean>\",\n        \"isSecuritySafeCritical\": \"<boolean>\",\n        \"isSecurityTransparent\": \"<boolean>\",\n        \"memberType\": 8\n      },\n      \"typeHandle\": {\n        \"value\": {}\n      },\n      \"guid\": \"<uuid>\",\n      \"baseType\": {\n        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n      },\n      \"isSerializable\": \"<boolean>\",\n      \"containsGenericParameters\": \"<boolean>\",\n      \"isVisible\": \"<boolean>\"\n    },\n    \"module\": {\n      \"assembly\": {\n        \"definedTypes\": [\n          {\n            \"name\": \"<string>\",\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"isCollectible\": \"<boolean>\",\n            \"metadataToken\": \"<integer>\",\n            \"memberType\": 32,\n            \"namespace\": \"<string>\",\n            \"assemblyQualifiedName\": \"<string>\",\n            \"fullName\": \"<string>\",\n            \"assembly\": {\n              \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n            },\n            \"module\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"isInterface\": \"<boolean>\",\n            \"isNested\": \"<boolean>\",\n            \"declaringType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"declaringMethod\": {\n              \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n            },\n            \"reflectedType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"underlyingSystemType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"isTypeDefinition\": \"<boolean>\",\n            \"isArray\": \"<boolean>\",\n            \"isByRef\": \"<boolean>\",\n            \"isPointer\": \"<boolean>\",\n            \"isConstructedGenericType\": \"<boolean>\",\n            \"isGenericParameter\": \"<boolean>\",\n            \"isGenericTypeParameter\": \"<boolean>\",\n            \"isGenericMethodParameter\": \"<boolean>\",\n            \"isGenericType\": \"<boolean>\",\n            \"isGenericTypeDefinition\": \"<boolean>\",\n            \"isSZArray\": \"<boolean>\",\n            \"isVariableBoundArray\": \"<boolean>\",\n            \"isByRefLike\": \"<boolean>\",\n            \"isFunctionPointer\": \"<boolean>\",\n            \"isUnmanagedFunctionPointer\": \"<boolean>\",\n            \"hasElementType\": \"<boolean>\",\n            \"genericTypeArguments\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ],\n            \"genericParameterPosition\": \"<integer>\",\n            \"genericParameterAttributes\": 16,\n            \"attributes\": 5,\n            \"isAbstract\": \"<boolean>\",\n            \"isImport\": \"<boolean>\",\n            \"isSealed\": \"<boolean>\",\n            \"isSpecialName\": \"<boolean>\",\n            \"isClass\": \"<boolean>\",\n            \"isNestedAssembly\": \"<boolean>\",\n            \"isNestedFamANDAssem\": \"<boolean>\",\n            \"isNestedFamily\": \"<boolean>\",\n            \"isNestedFamORAssem\": \"<boolean>\",\n            \"isNestedPrivate\": \"<boolean>\",\n            \"isNestedPublic\": \"<boolean>\",\n            \"isNotPublic\": \"<boolean>\",\n            \"isPublic\": \"<boolean>\",\n            \"isAutoLayout\": \"<boolean>\",\n            \"isExplicitLayout\": \"<boolean>\",\n            \"isLayoutSequential\": \"<boolean>\",\n            \"isAnsiClass\": \"<boolean>\",\n            \"isAutoClass\": \"<boolean>\",\n            \"isUnicodeClass\": \"<boolean>\",\n            \"isCOMObject\": \"<boolean>\",\n            \"isContextful\": \"<boolean>\",\n            \"isEnum\": \"<boolean>\",\n            \"isMarshalByRef\": \"<boolean>\",\n            \"isPrimitive\": \"<boolean>\",\n            \"isValueType\": \"<boolean>\",\n            \"isSignatureType\": \"<boolean>\",\n            \"isSecurityCritical\": \"<boolean>\",\n            \"isSecuritySafeCritical\": \"<boolean>\",\n            \"isSecurityTransparent\": \"<boolean>\",\n            \"structLayoutAttribute\": {\n              \"typeId\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"value\": 3\n            },\n            \"typeInitializer\": {\n              \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n            },\n            \"typeHandle\": {\n              \"value\": {}\n            },\n            \"guid\": \"<uuid>\",\n            \"baseType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"isSerializable\": \"<boolean>\",\n            \"containsGenericParameters\": \"<boolean>\",\n            \"isVisible\": \"<boolean>\",\n            \"genericTypeParameters\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ],\n            \"declaredConstructors\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n              }\n            ],\n            \"declaredEvents\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 2,\n                \"attributes\": 512,\n                \"isSpecialName\": \"<boolean>\",\n                \"addMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 53248,\n                  \"methodImplementationFlags\": 3,\n                  \"callingConvention\": 32,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 128,\n                  \"returnParameter\": {\n                    \"attributes\": 16384,\n                    \"member\": {\n                      \"memberType\": 2,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"removeMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 8,\n                  \"methodImplementationFlags\": 1,\n                  \"callingConvention\": 64,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 128,\n                  \"returnParameter\": {\n                    \"attributes\": 61440,\n                    \"member\": {\n                      \"memberType\": 191,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"raiseMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 5,\n                  \"methodImplementationFlags\": 512,\n                  \"callingConvention\": 2,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 16,\n                  \"returnParameter\": {\n                    \"attributes\": 32768,\n                    \"member\": {\n                      \"memberType\": 4,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"isMulticast\": \"<boolean>\",\n                \"eventHandlerType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              }\n            ],\n            \"declaredFields\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 32,\n                \"attributes\": 16,\n                \"fieldType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"isInitOnly\": \"<boolean>\",\n                \"isLiteral\": \"<boolean>\",\n                \"isNotSerialized\": \"<boolean>\",\n                \"isPinvokeImpl\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isStatic\": \"<boolean>\",\n                \"isAssembly\": \"<boolean>\",\n                \"isFamily\": \"<boolean>\",\n                \"isFamilyAndAssembly\": \"<boolean>\",\n                \"isFamilyOrAssembly\": \"<boolean>\",\n                \"isPrivate\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"fieldHandle\": {\n                  \"value\": {}\n                }\n              }\n            ],\n            \"declaredMembers\": [\n              {\n                \"memberType\": 32,\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\"\n              }\n            ],\n            \"declaredMethods\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"attributes\": 2048,\n                \"methodImplementationFlags\": 128,\n                \"callingConvention\": 64,\n                \"isAbstract\": \"<boolean>\",\n                \"isConstructor\": \"<boolean>\",\n                \"isFinal\": \"<boolean>\",\n                \"isHideBySig\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isStatic\": \"<boolean>\",\n                \"isVirtual\": \"<boolean>\",\n                \"isAssembly\": \"<boolean>\",\n                \"isFamily\": \"<boolean>\",\n                \"isFamilyAndAssembly\": \"<boolean>\",\n                \"isFamilyOrAssembly\": \"<boolean>\",\n                \"isPrivate\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isConstructedGenericMethod\": \"<boolean>\",\n                \"isGenericMethod\": \"<boolean>\",\n                \"isGenericMethodDefinition\": \"<boolean>\",\n                \"containsGenericParameters\": \"<boolean>\",\n                \"methodHandle\": {\n                  \"value\": {}\n                },\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"memberType\": 32,\n                \"returnParameter\": {\n                  \"attributes\": 16,\n                  \"member\": {\n                    \"memberType\": 8,\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"name\": \"<string>\",\n                  \"parameterType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"position\": \"<integer>\",\n                  \"isIn\": \"<boolean>\",\n                  \"isLcid\": \"<boolean>\",\n                  \"isOptional\": \"<boolean>\",\n                  \"isOut\": \"<boolean>\",\n                  \"isRetval\": \"<boolean>\",\n                  \"defaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"rawDefaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"hasDefaultValue\": \"<boolean>\",\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"returnType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"returnTypeCustomAttributes\": {}\n              }\n            ],\n            \"declaredNestedTypes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n              }\n            ],\n            \"declaredProperties\": [\n              {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 1,\n                \"propertyType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"attributes\": 0,\n                \"isSpecialName\": \"<boolean>\",\n                \"canRead\": \"<boolean>\",\n                \"canWrite\": \"<boolean>\",\n                \"getMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 5,\n                  \"methodImplementationFlags\": 3,\n                  \"callingConvention\": 64,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 2,\n                  \"returnParameter\": {\n                    \"attributes\": 8192,\n                    \"member\": {\n                      \"memberType\": 191,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"setMethod\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 512,\n                  \"methodImplementationFlags\": 0,\n                  \"callingConvention\": 1,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 1,\n                  \"returnParameter\": {\n                    \"attributes\": 1,\n                    \"member\": {\n                      \"memberType\": 1,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                }\n              }\n            ],\n            \"implementedInterfaces\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ]\n          }\n        ],\n        \"exportedTypes\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          }\n        ],\n        \"codeBase\": \"<string>\",\n        \"entryPoint\": {\n          \"name\": \"<string>\",\n          \"declaringType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"reflectedType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"module\": {\n            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n          },\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"isCollectible\": \"<boolean>\",\n          \"metadataToken\": \"<integer>\",\n          \"attributes\": 256,\n          \"methodImplementationFlags\": 16,\n          \"callingConvention\": 2,\n          \"isAbstract\": \"<boolean>\",\n          \"isConstructor\": \"<boolean>\",\n          \"isFinal\": \"<boolean>\",\n          \"isHideBySig\": \"<boolean>\",\n          \"isSpecialName\": \"<boolean>\",\n          \"isStatic\": \"<boolean>\",\n          \"isVirtual\": \"<boolean>\",\n          \"isAssembly\": \"<boolean>\",\n          \"isFamily\": \"<boolean>\",\n          \"isFamilyAndAssembly\": \"<boolean>\",\n          \"isFamilyOrAssembly\": \"<boolean>\",\n          \"isPrivate\": \"<boolean>\",\n          \"isPublic\": \"<boolean>\",\n          \"isConstructedGenericMethod\": \"<boolean>\",\n          \"isGenericMethod\": \"<boolean>\",\n          \"isGenericMethodDefinition\": \"<boolean>\",\n          \"containsGenericParameters\": \"<boolean>\",\n          \"methodHandle\": {\n            \"value\": {}\n          },\n          \"isSecurityCritical\": \"<boolean>\",\n          \"isSecuritySafeCritical\": \"<boolean>\",\n          \"isSecurityTransparent\": \"<boolean>\",\n          \"memberType\": 8,\n          \"returnParameter\": {\n            \"attributes\": 4,\n            \"member\": {\n              \"memberType\": 128,\n              \"name\": \"<string>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\"\n            },\n            \"name\": \"<string>\",\n            \"parameterType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"position\": \"<integer>\",\n            \"isIn\": \"<boolean>\",\n            \"isLcid\": \"<boolean>\",\n            \"isOptional\": \"<boolean>\",\n            \"isOut\": \"<boolean>\",\n            \"isRetval\": \"<boolean>\",\n            \"defaultValue\": {\n              \"nullable\": true,\n              \"readOnly\": true\n            },\n            \"rawDefaultValue\": {\n              \"nullable\": true,\n              \"readOnly\": true\n            },\n            \"hasDefaultValue\": \"<boolean>\",\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"metadataToken\": \"<integer>\"\n          },\n          \"returnType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"returnTypeCustomAttributes\": {}\n        },\n        \"fullName\": \"<string>\",\n        \"imageRuntimeVersion\": \"<string>\",\n        \"isDynamic\": \"<boolean>\",\n        \"location\": \"<string>\",\n        \"reflectionOnly\": \"<boolean>\",\n        \"isCollectible\": \"<boolean>\",\n        \"isFullyTrusted\": \"<boolean>\",\n        \"customAttributes\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n          }\n        ],\n        \"escapedCodeBase\": \"<string>\",\n        \"manifestModule\": {\n          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n        },\n        \"modules\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n          }\n        ],\n        \"globalAssemblyCache\": \"<boolean>\",\n        \"hostContext\": \"<long>\",\n        \"securityRuleSet\": 2\n      },\n      \"fullyQualifiedName\": \"<string>\",\n      \"name\": \"<string>\",\n      \"mdStreamVersion\": \"<integer>\",\n      \"moduleVersionId\": \"<uuid>\",\n      \"scopeName\": \"<string>\",\n      \"moduleHandle\": {\n        \"mdStreamVersion\": \"<integer>\"\n      },\n      \"customAttributes\": [\n        {\n          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n        }\n      ],\n      \"metadataToken\": \"<integer>\"\n    },\n    \"customAttributes\": [\n      {\n        \"attributeType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"constructor\": {\n          \"name\": \"<string>\",\n          \"declaringType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"reflectedType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"module\": {\n            \"assembly\": {\n              \"definedTypes\": [\n                {\n                  \"name\": \"<string>\",\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 128,\n                  \"namespace\": \"<string>\",\n                  \"assemblyQualifiedName\": \"<string>\",\n                  \"fullName\": \"<string>\",\n                  \"assembly\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"isInterface\": \"<boolean>\",\n                  \"isNested\": \"<boolean>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"declaringMethod\": {\n                    \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"underlyingSystemType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"isTypeDefinition\": \"<boolean>\",\n                  \"isArray\": \"<boolean>\",\n                  \"isByRef\": \"<boolean>\",\n                  \"isPointer\": \"<boolean>\",\n                  \"isConstructedGenericType\": \"<boolean>\",\n                  \"isGenericParameter\": \"<boolean>\",\n                  \"isGenericTypeParameter\": \"<boolean>\",\n                  \"isGenericMethodParameter\": \"<boolean>\",\n                  \"isGenericType\": \"<boolean>\",\n                  \"isGenericTypeDefinition\": \"<boolean>\",\n                  \"isSZArray\": \"<boolean>\",\n                  \"isVariableBoundArray\": \"<boolean>\",\n                  \"isByRefLike\": \"<boolean>\",\n                  \"isFunctionPointer\": \"<boolean>\",\n                  \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                  \"hasElementType\": \"<boolean>\",\n                  \"genericTypeArguments\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  ],\n                  \"genericParameterPosition\": \"<integer>\",\n                  \"genericParameterAttributes\": 4,\n                  \"attributes\": 16,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isImport\": \"<boolean>\",\n                  \"isSealed\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isClass\": \"<boolean>\",\n                  \"isNestedAssembly\": \"<boolean>\",\n                  \"isNestedFamANDAssem\": \"<boolean>\",\n                  \"isNestedFamily\": \"<boolean>\",\n                  \"isNestedFamORAssem\": \"<boolean>\",\n                  \"isNestedPrivate\": \"<boolean>\",\n                  \"isNestedPublic\": \"<boolean>\",\n                  \"isNotPublic\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isAutoLayout\": \"<boolean>\",\n                  \"isExplicitLayout\": \"<boolean>\",\n                  \"isLayoutSequential\": \"<boolean>\",\n                  \"isAnsiClass\": \"<boolean>\",\n                  \"isAutoClass\": \"<boolean>\",\n                  \"isUnicodeClass\": \"<boolean>\",\n                  \"isCOMObject\": \"<boolean>\",\n                  \"isContextful\": \"<boolean>\",\n                  \"isEnum\": \"<boolean>\",\n                  \"isMarshalByRef\": \"<boolean>\",\n                  \"isPrimitive\": \"<boolean>\",\n                  \"isValueType\": \"<boolean>\",\n                  \"isSignatureType\": \"<boolean>\",\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"structLayoutAttribute\": {\n                    \"typeId\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"value\": 3\n                  },\n                  \"typeInitializer\": {\n                    \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                  },\n                  \"typeHandle\": {\n                    \"value\": {}\n                  },\n                  \"guid\": \"<uuid>\",\n                  \"baseType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"isSerializable\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"isVisible\": \"<boolean>\",\n                  \"genericTypeParameters\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  ],\n                  \"declaredConstructors\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                    }\n                  ],\n                  \"declaredEvents\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"memberType\": 191,\n                      \"attributes\": 1024,\n                      \"isSpecialName\": \"<boolean>\",\n                      \"addMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 1,\n                        \"methodImplementationFlags\": 512,\n                        \"callingConvention\": 2,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 128,\n                        \"returnParameter\": {\n                          \"attributes\": 4,\n                          \"member\": {\n                            \"memberType\": 16,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"removeMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 7,\n                        \"methodImplementationFlags\": 65535,\n                        \"callingConvention\": 32,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 1,\n                        \"returnParameter\": {\n                          \"attributes\": 0,\n                          \"member\": {\n                            \"memberType\": 128,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"raiseMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 16384,\n                        \"methodImplementationFlags\": 512,\n                        \"callingConvention\": 1,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 128,\n                        \"returnParameter\": {\n                          \"attributes\": 32768,\n                          \"member\": {\n                            \"memberType\": 16,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"isMulticast\": \"<boolean>\",\n                      \"eventHandlerType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    }\n                  ],\n                  \"declaredFields\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"memberType\": 191,\n                      \"attributes\": 512,\n                      \"fieldType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"isInitOnly\": \"<boolean>\",\n                      \"isLiteral\": \"<boolean>\",\n                      \"isNotSerialized\": \"<boolean>\",\n                      \"isPinvokeImpl\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"fieldHandle\": {\n                        \"value\": {}\n                      }\n                    }\n                  ],\n                  \"declaredMembers\": [\n                    {\n                      \"memberType\": 4,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    }\n                  ],\n                  \"declaredMethods\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 53248,\n                      \"methodImplementationFlags\": 0,\n                      \"callingConvention\": 64,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 16,\n                      \"returnParameter\": {\n                        \"attributes\": 32768,\n                        \"member\": {\n                          \"memberType\": 4,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    }\n                  ],\n                  \"declaredNestedTypes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                    }\n                  ],\n                  \"declaredProperties\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"memberType\": 64,\n                      \"propertyType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"attributes\": 512,\n                      \"isSpecialName\": \"<boolean>\",\n                      \"canRead\": \"<boolean>\",\n                      \"canWrite\": \"<boolean>\",\n                      \"getMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 7,\n                        \"methodImplementationFlags\": 16,\n                        \"callingConvention\": 3,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 8,\n                        \"returnParameter\": {\n                          \"attributes\": 4096,\n                          \"member\": {\n                            \"memberType\": 191,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"setMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 8,\n                        \"methodImplementationFlags\": 64,\n                        \"callingConvention\": 2,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 16,\n                        \"returnParameter\": {\n                          \"attributes\": 1,\n                          \"member\": {\n                            \"memberType\": 32,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      }\n                    }\n                  ],\n                  \"implementedInterfaces\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  ]\n                }\n              ],\n              \"exportedTypes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"codeBase\": \"<string>\",\n              \"entryPoint\": {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"attributes\": 2048,\n                \"methodImplementationFlags\": 3,\n                \"callingConvention\": 32,\n                \"isAbstract\": \"<boolean>\",\n                \"isConstructor\": \"<boolean>\",\n                \"isFinal\": \"<boolean>\",\n                \"isHideBySig\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isStatic\": \"<boolean>\",\n                \"isVirtual\": \"<boolean>\",\n                \"isAssembly\": \"<boolean>\",\n                \"isFamily\": \"<boolean>\",\n                \"isFamilyAndAssembly\": \"<boolean>\",\n                \"isFamilyOrAssembly\": \"<boolean>\",\n                \"isPrivate\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isConstructedGenericMethod\": \"<boolean>\",\n                \"isGenericMethod\": \"<boolean>\",\n                \"isGenericMethodDefinition\": \"<boolean>\",\n                \"containsGenericParameters\": \"<boolean>\",\n                \"methodHandle\": {\n                  \"value\": {}\n                },\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"memberType\": 191,\n                \"returnParameter\": {\n                  \"attributes\": 4096,\n                  \"member\": {\n                    \"memberType\": 32,\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"name\": \"<string>\",\n                  \"parameterType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"position\": \"<integer>\",\n                  \"isIn\": \"<boolean>\",\n                  \"isLcid\": \"<boolean>\",\n                  \"isOptional\": \"<boolean>\",\n                  \"isOut\": \"<boolean>\",\n                  \"isRetval\": \"<boolean>\",\n                  \"defaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"rawDefaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"hasDefaultValue\": \"<boolean>\",\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"returnType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"returnTypeCustomAttributes\": {}\n              },\n              \"fullName\": \"<string>\",\n              \"imageRuntimeVersion\": \"<string>\",\n              \"isDynamic\": \"<boolean>\",\n              \"location\": \"<string>\",\n              \"reflectionOnly\": \"<boolean>\",\n              \"isCollectible\": \"<boolean>\",\n              \"isFullyTrusted\": \"<boolean>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"escapedCodeBase\": \"<string>\",\n              \"manifestModule\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"modules\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                }\n              ],\n              \"globalAssemblyCache\": \"<boolean>\",\n              \"hostContext\": \"<long>\",\n              \"securityRuleSet\": 1\n            },\n            \"fullyQualifiedName\": \"<string>\",\n            \"name\": \"<string>\",\n            \"mdStreamVersion\": \"<integer>\",\n            \"moduleVersionId\": \"<uuid>\",\n            \"scopeName\": \"<string>\",\n            \"moduleHandle\": {\n              \"mdStreamVersion\": \"<integer>\"\n            },\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"metadataToken\": \"<integer>\"\n          },\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"isCollectible\": \"<boolean>\",\n          \"metadataToken\": \"<integer>\",\n          \"attributes\": 5,\n          \"methodImplementationFlags\": 4,\n          \"callingConvention\": 64,\n          \"isAbstract\": \"<boolean>\",\n          \"isConstructor\": \"<boolean>\",\n          \"isFinal\": \"<boolean>\",\n          \"isHideBySig\": \"<boolean>\",\n          \"isSpecialName\": \"<boolean>\",\n          \"isStatic\": \"<boolean>\",\n          \"isVirtual\": \"<boolean>\",\n          \"isAssembly\": \"<boolean>\",\n          \"isFamily\": \"<boolean>\",\n          \"isFamilyAndAssembly\": \"<boolean>\",\n          \"isFamilyOrAssembly\": \"<boolean>\",\n          \"isPrivate\": \"<boolean>\",\n          \"isPublic\": \"<boolean>\",\n          \"isConstructedGenericMethod\": \"<boolean>\",\n          \"isGenericMethod\": \"<boolean>\",\n          \"isGenericMethodDefinition\": \"<boolean>\",\n          \"containsGenericParameters\": \"<boolean>\",\n          \"methodHandle\": {\n            \"value\": {}\n          },\n          \"isSecurityCritical\": \"<boolean>\",\n          \"isSecuritySafeCritical\": \"<boolean>\",\n          \"isSecurityTransparent\": \"<boolean>\",\n          \"memberType\": 2\n        },\n        \"constructorArguments\": [\n          {\n            \"argumentType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"value\": {\n              \"nullable\": true\n            }\n          }\n        ],\n        \"namedArguments\": [\n          {\n            \"memberInfo\": {\n              \"memberType\": 191,\n              \"name\": \"<string>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\"\n            },\n            \"typedValue\": {\n              \"argumentType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"value\": {\n                \"nullable\": true\n              }\n            },\n            \"memberName\": \"<string>\",\n            \"isField\": \"<boolean>\"\n          }\n        ]\n      }\n    ],\n    \"isCollectible\": \"<boolean>\",\n    \"metadataToken\": \"<integer>\",\n    \"attributes\": 0,\n    \"methodImplementationFlags\": 0,\n    \"callingConvention\": 64,\n    \"isAbstract\": \"<boolean>\",\n    \"isConstructor\": \"<boolean>\",\n    \"isFinal\": \"<boolean>\",\n    \"isHideBySig\": \"<boolean>\",\n    \"isSpecialName\": \"<boolean>\",\n    \"isStatic\": \"<boolean>\",\n    \"isVirtual\": \"<boolean>\",\n    \"isAssembly\": \"<boolean>\",\n    \"isFamily\": \"<boolean>\",\n    \"isFamilyAndAssembly\": \"<boolean>\",\n    \"isFamilyOrAssembly\": \"<boolean>\",\n    \"isPrivate\": \"<boolean>\",\n    \"isPublic\": \"<boolean>\",\n    \"isConstructedGenericMethod\": \"<boolean>\",\n    \"isGenericMethod\": \"<boolean>\",\n    \"isGenericMethodDefinition\": \"<boolean>\",\n    \"containsGenericParameters\": \"<boolean>\",\n    \"methodHandle\": {\n      \"value\": {}\n    },\n    \"isSecurityCritical\": \"<boolean>\",\n    \"isSecuritySafeCritical\": \"<boolean>\",\n    \"isSecurityTransparent\": \"<boolean>\"\n  },\n  \"message\": \"<string>\",\n  \"data\": {\n    \"magna_6cf\": {}\n  },\n  \"innerException\": {\n    \"targetSite\": {\n      \"memberType\": 32,\n      \"name\": \"<string>\",\n      \"declaringType\": {\n        \"name\": \"<string>\",\n        \"customAttributes\": [\n          {\n            \"attributeType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"constructor\": {\n              \"name\": \"<string>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"module\": {\n                \"assembly\": {\n                  \"definedTypes\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"memberType\": 16,\n                      \"namespace\": \"<string>\",\n                      \"assemblyQualifiedName\": \"<string>\",\n                      \"fullName\": \"<string>\",\n                      \"assembly\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"isInterface\": \"<boolean>\",\n                      \"isNested\": \"<boolean>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"declaringMethod\": {\n                        \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"underlyingSystemType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"isTypeDefinition\": \"<boolean>\",\n                      \"isArray\": \"<boolean>\",\n                      \"isByRef\": \"<boolean>\",\n                      \"isPointer\": \"<boolean>\",\n                      \"isConstructedGenericType\": \"<boolean>\",\n                      \"isGenericParameter\": \"<boolean>\",\n                      \"isGenericTypeParameter\": \"<boolean>\",\n                      \"isGenericMethodParameter\": \"<boolean>\",\n                      \"isGenericType\": \"<boolean>\",\n                      \"isGenericTypeDefinition\": \"<boolean>\",\n                      \"isSZArray\": \"<boolean>\",\n                      \"isVariableBoundArray\": \"<boolean>\",\n                      \"isByRefLike\": \"<boolean>\",\n                      \"isFunctionPointer\": \"<boolean>\",\n                      \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                      \"hasElementType\": \"<boolean>\",\n                      \"genericTypeArguments\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        }\n                      ],\n                      \"genericParameterPosition\": \"<integer>\",\n                      \"genericParameterAttributes\": 28,\n                      \"attributes\": 196608,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isImport\": \"<boolean>\",\n                      \"isSealed\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isClass\": \"<boolean>\",\n                      \"isNestedAssembly\": \"<boolean>\",\n                      \"isNestedFamANDAssem\": \"<boolean>\",\n                      \"isNestedFamily\": \"<boolean>\",\n                      \"isNestedFamORAssem\": \"<boolean>\",\n                      \"isNestedPrivate\": \"<boolean>\",\n                      \"isNestedPublic\": \"<boolean>\",\n                      \"isNotPublic\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isAutoLayout\": \"<boolean>\",\n                      \"isExplicitLayout\": \"<boolean>\",\n                      \"isLayoutSequential\": \"<boolean>\",\n                      \"isAnsiClass\": \"<boolean>\",\n                      \"isAutoClass\": \"<boolean>\",\n                      \"isUnicodeClass\": \"<boolean>\",\n                      \"isCOMObject\": \"<boolean>\",\n                      \"isContextful\": \"<boolean>\",\n                      \"isEnum\": \"<boolean>\",\n                      \"isMarshalByRef\": \"<boolean>\",\n                      \"isPrimitive\": \"<boolean>\",\n                      \"isValueType\": \"<boolean>\",\n                      \"isSignatureType\": \"<boolean>\",\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"structLayoutAttribute\": {\n                        \"typeId\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"value\": 3\n                      },\n                      \"typeInitializer\": {\n                        \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                      },\n                      \"typeHandle\": {\n                        \"value\": {}\n                      },\n                      \"guid\": \"<uuid>\",\n                      \"baseType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"isSerializable\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"isVisible\": \"<boolean>\",\n                      \"genericTypeParameters\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        }\n                      ],\n                      \"declaredConstructors\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                        }\n                      ],\n                      \"declaredEvents\": [\n                        {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"memberType\": 32,\n                          \"attributes\": 1024,\n                          \"isSpecialName\": \"<boolean>\",\n                          \"addMethod\": {\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\",\n                            \"attributes\": 32,\n                            \"methodImplementationFlags\": 65535,\n                            \"callingConvention\": 3,\n                            \"isAbstract\": \"<boolean>\",\n                            \"isConstructor\": \"<boolean>\",\n                            \"isFinal\": \"<boolean>\",\n                            \"isHideBySig\": \"<boolean>\",\n                            \"isSpecialName\": \"<boolean>\",\n                            \"isStatic\": \"<boolean>\",\n                            \"isVirtual\": \"<boolean>\",\n                            \"isAssembly\": \"<boolean>\",\n                            \"isFamily\": \"<boolean>\",\n                            \"isFamilyAndAssembly\": \"<boolean>\",\n                            \"isFamilyOrAssembly\": \"<boolean>\",\n                            \"isPrivate\": \"<boolean>\",\n                            \"isPublic\": \"<boolean>\",\n                            \"isConstructedGenericMethod\": \"<boolean>\",\n                            \"isGenericMethod\": \"<boolean>\",\n                            \"isGenericMethodDefinition\": \"<boolean>\",\n                            \"containsGenericParameters\": \"<boolean>\",\n                            \"methodHandle\": {\n                              \"value\": {}\n                            },\n                            \"isSecurityCritical\": \"<boolean>\",\n                            \"isSecuritySafeCritical\": \"<boolean>\",\n                            \"isSecurityTransparent\": \"<boolean>\",\n                            \"memberType\": 8,\n                            \"returnParameter\": {\n                              \"attributes\": 61440,\n                              \"member\": {\n                                \"memberType\": 128,\n                                \"name\": \"<string>\",\n                                \"declaringType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"reflectedType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"module\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                                },\n                                \"customAttributes\": [\n                                  {\n                                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                  }\n                                ],\n                                \"isCollectible\": \"<boolean>\",\n                                \"metadataToken\": \"<integer>\"\n                              },\n                              \"name\": \"<string>\",\n                              \"parameterType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"position\": \"<integer>\",\n                              \"isIn\": \"<boolean>\",\n                              \"isLcid\": \"<boolean>\",\n                              \"isOptional\": \"<boolean>\",\n                              \"isOut\": \"<boolean>\",\n                              \"isRetval\": \"<boolean>\",\n                              \"defaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"rawDefaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"hasDefaultValue\": \"<boolean>\",\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"returnType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"returnTypeCustomAttributes\": {}\n                          },\n                          \"removeMethod\": {\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\",\n                            \"attributes\": 1024,\n                            \"methodImplementationFlags\": 32,\n                            \"callingConvention\": 2,\n                            \"isAbstract\": \"<boolean>\",\n                            \"isConstructor\": \"<boolean>\",\n                            \"isFinal\": \"<boolean>\",\n                            \"isHideBySig\": \"<boolean>\",\n                            \"isSpecialName\": \"<boolean>\",\n                            \"isStatic\": \"<boolean>\",\n                            \"isVirtual\": \"<boolean>\",\n                            \"isAssembly\": \"<boolean>\",\n                            \"isFamily\": \"<boolean>\",\n                            \"isFamilyAndAssembly\": \"<boolean>\",\n                            \"isFamilyOrAssembly\": \"<boolean>\",\n                            \"isPrivate\": \"<boolean>\",\n                            \"isPublic\": \"<boolean>\",\n                            \"isConstructedGenericMethod\": \"<boolean>\",\n                            \"isGenericMethod\": \"<boolean>\",\n                            \"isGenericMethodDefinition\": \"<boolean>\",\n                            \"containsGenericParameters\": \"<boolean>\",\n                            \"methodHandle\": {\n                              \"value\": {}\n                            },\n                            \"isSecurityCritical\": \"<boolean>\",\n                            \"isSecuritySafeCritical\": \"<boolean>\",\n                            \"isSecurityTransparent\": \"<boolean>\",\n                            \"memberType\": 16,\n                            \"returnParameter\": {\n                              \"attributes\": 8192,\n                              \"member\": {\n                                \"memberType\": 4,\n                                \"name\": \"<string>\",\n                                \"declaringType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"reflectedType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"module\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                                },\n                                \"customAttributes\": [\n                                  {\n                                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                  }\n                                ],\n                                \"isCollectible\": \"<boolean>\",\n                                \"metadataToken\": \"<integer>\"\n                              },\n                              \"name\": \"<string>\",\n                              \"parameterType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"position\": \"<integer>\",\n                              \"isIn\": \"<boolean>\",\n                              \"isLcid\": \"<boolean>\",\n                              \"isOptional\": \"<boolean>\",\n                              \"isOut\": \"<boolean>\",\n                              \"isRetval\": \"<boolean>\",\n                              \"defaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"rawDefaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"hasDefaultValue\": \"<boolean>\",\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"returnType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"returnTypeCustomAttributes\": {}\n                          },\n                          \"raiseMethod\": {\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\",\n                            \"attributes\": 128,\n                            \"methodImplementationFlags\": 0,\n                            \"callingConvention\": 64,\n                            \"isAbstract\": \"<boolean>\",\n                            \"isConstructor\": \"<boolean>\",\n                            \"isFinal\": \"<boolean>\",\n                            \"isHideBySig\": \"<boolean>\",\n                            \"isSpecialName\": \"<boolean>\",\n                            \"isStatic\": \"<boolean>\",\n                            \"isVirtual\": \"<boolean>\",\n                            \"isAssembly\": \"<boolean>\",\n                            \"isFamily\": \"<boolean>\",\n                            \"isFamilyAndAssembly\": \"<boolean>\",\n                            \"isFamilyOrAssembly\": \"<boolean>\",\n                            \"isPrivate\": \"<boolean>\",\n                            \"isPublic\": \"<boolean>\",\n                            \"isConstructedGenericMethod\": \"<boolean>\",\n                            \"isGenericMethod\": \"<boolean>\",\n                            \"isGenericMethodDefinition\": \"<boolean>\",\n                            \"containsGenericParameters\": \"<boolean>\",\n                            \"methodHandle\": {\n                              \"value\": {}\n                            },\n                            \"isSecurityCritical\": \"<boolean>\",\n                            \"isSecuritySafeCritical\": \"<boolean>\",\n                            \"isSecurityTransparent\": \"<boolean>\",\n                            \"memberType\": 16,\n                            \"returnParameter\": {\n                              \"attributes\": 1,\n                              \"member\": {\n                                \"memberType\": 16,\n                                \"name\": \"<string>\",\n                                \"declaringType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"reflectedType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"module\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                                },\n                                \"customAttributes\": [\n                                  {\n                                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                  }\n                                ],\n                                \"isCollectible\": \"<boolean>\",\n                                \"metadataToken\": \"<integer>\"\n                              },\n                              \"name\": \"<string>\",\n                              \"parameterType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"position\": \"<integer>\",\n                              \"isIn\": \"<boolean>\",\n                              \"isLcid\": \"<boolean>\",\n                              \"isOptional\": \"<boolean>\",\n                              \"isOut\": \"<boolean>\",\n                              \"isRetval\": \"<boolean>\",\n                              \"defaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"rawDefaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"hasDefaultValue\": \"<boolean>\",\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"returnType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"returnTypeCustomAttributes\": {}\n                          },\n                          \"isMulticast\": \"<boolean>\",\n                          \"eventHandlerType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          }\n                        }\n                      ],\n                      \"declaredFields\": [\n                        {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"memberType\": 2,\n                          \"attributes\": 4,\n                          \"fieldType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"isInitOnly\": \"<boolean>\",\n                          \"isLiteral\": \"<boolean>\",\n                          \"isNotSerialized\": \"<boolean>\",\n                          \"isPinvokeImpl\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"fieldHandle\": {\n                            \"value\": {}\n                          }\n                        }\n                      ],\n                      \"declaredMembers\": [\n                        {\n                          \"memberType\": 191,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        }\n                      ],\n                      \"declaredMethods\": [\n                        {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 53248,\n                          \"methodImplementationFlags\": 65535,\n                          \"callingConvention\": 3,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 191,\n                          \"returnParameter\": {\n                            \"attributes\": 16,\n                            \"member\": {\n                              \"memberType\": 16,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        }\n                      ],\n                      \"declaredNestedTypes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                        }\n                      ],\n                      \"declaredProperties\": [\n                        {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"memberType\": 1,\n                          \"propertyType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"attributes\": 62464,\n                          \"isSpecialName\": \"<boolean>\",\n                          \"canRead\": \"<boolean>\",\n                          \"canWrite\": \"<boolean>\",\n                          \"getMethod\": {\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\",\n                            \"attributes\": 16,\n                            \"methodImplementationFlags\": 32,\n                            \"callingConvention\": 64,\n                            \"isAbstract\": \"<boolean>\",\n                            \"isConstructor\": \"<boolean>\",\n                            \"isFinal\": \"<boolean>\",\n                            \"isHideBySig\": \"<boolean>\",\n                            \"isSpecialName\": \"<boolean>\",\n                            \"isStatic\": \"<boolean>\",\n                            \"isVirtual\": \"<boolean>\",\n                            \"isAssembly\": \"<boolean>\",\n                            \"isFamily\": \"<boolean>\",\n                            \"isFamilyAndAssembly\": \"<boolean>\",\n                            \"isFamilyOrAssembly\": \"<boolean>\",\n                            \"isPrivate\": \"<boolean>\",\n                            \"isPublic\": \"<boolean>\",\n                            \"isConstructedGenericMethod\": \"<boolean>\",\n                            \"isGenericMethod\": \"<boolean>\",\n                            \"isGenericMethodDefinition\": \"<boolean>\",\n                            \"containsGenericParameters\": \"<boolean>\",\n                            \"methodHandle\": {\n                              \"value\": {}\n                            },\n                            \"isSecurityCritical\": \"<boolean>\",\n                            \"isSecuritySafeCritical\": \"<boolean>\",\n                            \"isSecurityTransparent\": \"<boolean>\",\n                            \"memberType\": 2,\n                            \"returnParameter\": {\n                              \"attributes\": 4,\n                              \"member\": {\n                                \"memberType\": 32,\n                                \"name\": \"<string>\",\n                                \"declaringType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"reflectedType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"module\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                                },\n                                \"customAttributes\": [\n                                  {\n                                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                  }\n                                ],\n                                \"isCollectible\": \"<boolean>\",\n                                \"metadataToken\": \"<integer>\"\n                              },\n                              \"name\": \"<string>\",\n                              \"parameterType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"position\": \"<integer>\",\n                              \"isIn\": \"<boolean>\",\n                              \"isLcid\": \"<boolean>\",\n                              \"isOptional\": \"<boolean>\",\n                              \"isOut\": \"<boolean>\",\n                              \"isRetval\": \"<boolean>\",\n                              \"defaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"rawDefaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"hasDefaultValue\": \"<boolean>\",\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"returnType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"returnTypeCustomAttributes\": {}\n                          },\n                          \"setMethod\": {\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\",\n                            \"attributes\": 7,\n                            \"methodImplementationFlags\": 1,\n                            \"callingConvention\": 32,\n                            \"isAbstract\": \"<boolean>\",\n                            \"isConstructor\": \"<boolean>\",\n                            \"isFinal\": \"<boolean>\",\n                            \"isHideBySig\": \"<boolean>\",\n                            \"isSpecialName\": \"<boolean>\",\n                            \"isStatic\": \"<boolean>\",\n                            \"isVirtual\": \"<boolean>\",\n                            \"isAssembly\": \"<boolean>\",\n                            \"isFamily\": \"<boolean>\",\n                            \"isFamilyAndAssembly\": \"<boolean>\",\n                            \"isFamilyOrAssembly\": \"<boolean>\",\n                            \"isPrivate\": \"<boolean>\",\n                            \"isPublic\": \"<boolean>\",\n                            \"isConstructedGenericMethod\": \"<boolean>\",\n                            \"isGenericMethod\": \"<boolean>\",\n                            \"isGenericMethodDefinition\": \"<boolean>\",\n                            \"containsGenericParameters\": \"<boolean>\",\n                            \"methodHandle\": {\n                              \"value\": {}\n                            },\n                            \"isSecurityCritical\": \"<boolean>\",\n                            \"isSecuritySafeCritical\": \"<boolean>\",\n                            \"isSecurityTransparent\": \"<boolean>\",\n                            \"memberType\": 16,\n                            \"returnParameter\": {\n                              \"attributes\": 4,\n                              \"member\": {\n                                \"memberType\": 8,\n                                \"name\": \"<string>\",\n                                \"declaringType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"reflectedType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"module\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                                },\n                                \"customAttributes\": [\n                                  {\n                                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                  }\n                                ],\n                                \"isCollectible\": \"<boolean>\",\n                                \"metadataToken\": \"<integer>\"\n                              },\n                              \"name\": \"<string>\",\n                              \"parameterType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"position\": \"<integer>\",\n                              \"isIn\": \"<boolean>\",\n                              \"isLcid\": \"<boolean>\",\n                              \"isOptional\": \"<boolean>\",\n                              \"isOut\": \"<boolean>\",\n                              \"isRetval\": \"<boolean>\",\n                              \"defaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"rawDefaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"hasDefaultValue\": \"<boolean>\",\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"returnType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"returnTypeCustomAttributes\": {}\n                          }\n                        }\n                      ],\n                      \"implementedInterfaces\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        }\n                      ]\n                    }\n                  ],\n                  \"exportedTypes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  ],\n                  \"codeBase\": \"<string>\",\n                  \"entryPoint\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 53248,\n                    \"methodImplementationFlags\": 2,\n                    \"callingConvention\": 2,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 16,\n                    \"returnParameter\": {\n                      \"attributes\": 8192,\n                      \"member\": {\n                        \"memberType\": 4,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"fullName\": \"<string>\",\n                  \"imageRuntimeVersion\": \"<string>\",\n                  \"isDynamic\": \"<boolean>\",\n                  \"location\": \"<string>\",\n                  \"reflectionOnly\": \"<boolean>\",\n                  \"isCollectible\": \"<boolean>\",\n                  \"isFullyTrusted\": \"<boolean>\",\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"escapedCodeBase\": \"<string>\",\n                  \"manifestModule\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"modules\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    }\n                  ],\n                  \"globalAssemblyCache\": \"<boolean>\",\n                  \"hostContext\": \"<long>\",\n                  \"securityRuleSet\": 1\n                },\n                \"fullyQualifiedName\": \"<string>\",\n                \"name\": \"<string>\",\n                \"mdStreamVersion\": \"<integer>\",\n                \"moduleVersionId\": \"<uuid>\",\n                \"scopeName\": \"<string>\",\n                \"moduleHandle\": {\n                  \"mdStreamVersion\": \"<integer>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"metadataToken\": \"<integer>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\",\n              \"attributes\": 1,\n              \"methodImplementationFlags\": 256,\n              \"callingConvention\": 64,\n              \"isAbstract\": \"<boolean>\",\n              \"isConstructor\": \"<boolean>\",\n              \"isFinal\": \"<boolean>\",\n              \"isHideBySig\": \"<boolean>\",\n              \"isSpecialName\": \"<boolean>\",\n              \"isStatic\": \"<boolean>\",\n              \"isVirtual\": \"<boolean>\",\n              \"isAssembly\": \"<boolean>\",\n              \"isFamily\": \"<boolean>\",\n              \"isFamilyAndAssembly\": \"<boolean>\",\n              \"isFamilyOrAssembly\": \"<boolean>\",\n              \"isPrivate\": \"<boolean>\",\n              \"isPublic\": \"<boolean>\",\n              \"isConstructedGenericMethod\": \"<boolean>\",\n              \"isGenericMethod\": \"<boolean>\",\n              \"isGenericMethodDefinition\": \"<boolean>\",\n              \"containsGenericParameters\": \"<boolean>\",\n              \"methodHandle\": {\n                \"value\": {}\n              },\n              \"isSecurityCritical\": \"<boolean>\",\n              \"isSecuritySafeCritical\": \"<boolean>\",\n              \"isSecurityTransparent\": \"<boolean>\",\n              \"memberType\": 8\n            },\n            \"constructorArguments\": [\n              {\n                \"argumentType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"value\": {\n                  \"nullable\": true\n                }\n              }\n            ],\n            \"namedArguments\": [\n              {\n                \"memberInfo\": {\n                  \"memberType\": 128,\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"typedValue\": {\n                  \"argumentType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"value\": {\n                    \"nullable\": true\n                  }\n                },\n                \"memberName\": \"<string>\",\n                \"isField\": \"<boolean>\"\n              }\n            ]\n          }\n        ],\n        \"isCollectible\": \"<boolean>\",\n        \"metadataToken\": \"<integer>\",\n        \"memberType\": 64,\n        \"namespace\": \"<string>\",\n        \"assemblyQualifiedName\": \"<string>\",\n        \"fullName\": \"<string>\",\n        \"assembly\": {\n          \"definedTypes\": [\n            {\n              \"name\": \"<string>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\",\n              \"memberType\": 2,\n              \"namespace\": \"<string>\",\n              \"assemblyQualifiedName\": \"<string>\",\n              \"fullName\": \"<string>\",\n              \"assembly\": {\n                \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"isInterface\": \"<boolean>\",\n              \"isNested\": \"<boolean>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"declaringMethod\": {\n                \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"underlyingSystemType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"isTypeDefinition\": \"<boolean>\",\n              \"isArray\": \"<boolean>\",\n              \"isByRef\": \"<boolean>\",\n              \"isPointer\": \"<boolean>\",\n              \"isConstructedGenericType\": \"<boolean>\",\n              \"isGenericParameter\": \"<boolean>\",\n              \"isGenericTypeParameter\": \"<boolean>\",\n              \"isGenericMethodParameter\": \"<boolean>\",\n              \"isGenericType\": \"<boolean>\",\n              \"isGenericTypeDefinition\": \"<boolean>\",\n              \"isSZArray\": \"<boolean>\",\n              \"isVariableBoundArray\": \"<boolean>\",\n              \"isByRefLike\": \"<boolean>\",\n              \"isFunctionPointer\": \"<boolean>\",\n              \"isUnmanagedFunctionPointer\": \"<boolean>\",\n              \"hasElementType\": \"<boolean>\",\n              \"genericTypeArguments\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"genericParameterPosition\": \"<integer>\",\n              \"genericParameterAttributes\": 8,\n              \"attributes\": 1048576,\n              \"isAbstract\": \"<boolean>\",\n              \"isImport\": \"<boolean>\",\n              \"isSealed\": \"<boolean>\",\n              \"isSpecialName\": \"<boolean>\",\n              \"isClass\": \"<boolean>\",\n              \"isNestedAssembly\": \"<boolean>\",\n              \"isNestedFamANDAssem\": \"<boolean>\",\n              \"isNestedFamily\": \"<boolean>\",\n              \"isNestedFamORAssem\": \"<boolean>\",\n              \"isNestedPrivate\": \"<boolean>\",\n              \"isNestedPublic\": \"<boolean>\",\n              \"isNotPublic\": \"<boolean>\",\n              \"isPublic\": \"<boolean>\",\n              \"isAutoLayout\": \"<boolean>\",\n              \"isExplicitLayout\": \"<boolean>\",\n              \"isLayoutSequential\": \"<boolean>\",\n              \"isAnsiClass\": \"<boolean>\",\n              \"isAutoClass\": \"<boolean>\",\n              \"isUnicodeClass\": \"<boolean>\",\n              \"isCOMObject\": \"<boolean>\",\n              \"isContextful\": \"<boolean>\",\n              \"isEnum\": \"<boolean>\",\n              \"isMarshalByRef\": \"<boolean>\",\n              \"isPrimitive\": \"<boolean>\",\n              \"isValueType\": \"<boolean>\",\n              \"isSignatureType\": \"<boolean>\",\n              \"isSecurityCritical\": \"<boolean>\",\n              \"isSecuritySafeCritical\": \"<boolean>\",\n              \"isSecurityTransparent\": \"<boolean>\",\n              \"structLayoutAttribute\": {\n                \"typeId\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"value\": 3\n              },\n              \"typeInitializer\": {\n                \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n              },\n              \"typeHandle\": {\n                \"value\": {}\n              },\n              \"guid\": \"<uuid>\",\n              \"baseType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"isSerializable\": \"<boolean>\",\n              \"containsGenericParameters\": \"<boolean>\",\n              \"isVisible\": \"<boolean>\",\n              \"genericTypeParameters\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"declaredConstructors\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                }\n              ],\n              \"declaredEvents\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 32,\n                  \"attributes\": 0,\n                  \"isSpecialName\": \"<boolean>\",\n                  \"addMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 512,\n                    \"methodImplementationFlags\": 16,\n                    \"callingConvention\": 32,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 191,\n                    \"returnParameter\": {\n                      \"attributes\": 4,\n                      \"member\": {\n                        \"memberType\": 64,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"removeMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 4,\n                    \"methodImplementationFlags\": 128,\n                    \"callingConvention\": 64,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 64,\n                    \"returnParameter\": {\n                      \"attributes\": 1,\n                      \"member\": {\n                        \"memberType\": 32,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"raiseMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 512,\n                    \"methodImplementationFlags\": 65535,\n                    \"callingConvention\": 32,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 8,\n                    \"returnParameter\": {\n                      \"attributes\": 2,\n                      \"member\": {\n                        \"memberType\": 64,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"isMulticast\": \"<boolean>\",\n                  \"eventHandlerType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                }\n              ],\n              \"declaredFields\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 64,\n                  \"attributes\": 256,\n                  \"fieldType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"isInitOnly\": \"<boolean>\",\n                  \"isLiteral\": \"<boolean>\",\n                  \"isNotSerialized\": \"<boolean>\",\n                  \"isPinvokeImpl\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"fieldHandle\": {\n                    \"value\": {}\n                  }\n                }\n              ],\n              \"declaredMembers\": [\n                {\n                  \"memberType\": 8,\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\"\n                }\n              ],\n              \"declaredMethods\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 4,\n                  \"methodImplementationFlags\": 8,\n                  \"callingConvention\": 3,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 191,\n                  \"returnParameter\": {\n                    \"attributes\": 0,\n                    \"member\": {\n                      \"memberType\": 1,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                }\n              ],\n              \"declaredNestedTypes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                }\n              ],\n              \"declaredProperties\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 4,\n                  \"propertyType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"attributes\": 4096,\n                  \"isSpecialName\": \"<boolean>\",\n                  \"canRead\": \"<boolean>\",\n                  \"canWrite\": \"<boolean>\",\n                  \"getMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 4096,\n                    \"methodImplementationFlags\": 16,\n                    \"callingConvention\": 1,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 2,\n                    \"returnParameter\": {\n                      \"attributes\": 8192,\n                      \"member\": {\n                        \"memberType\": 16,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"setMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 0,\n                    \"methodImplementationFlags\": 16,\n                    \"callingConvention\": 64,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 4,\n                    \"returnParameter\": {\n                      \"attributes\": 0,\n                      \"member\": {\n                        \"memberType\": 4,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  }\n                }\n              ],\n              \"implementedInterfaces\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ]\n            }\n          ],\n          \"exportedTypes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            }\n          ],\n          \"codeBase\": \"<string>\",\n          \"entryPoint\": {\n            \"name\": \"<string>\",\n            \"declaringType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"reflectedType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"module\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"isCollectible\": \"<boolean>\",\n            \"metadataToken\": \"<integer>\",\n            \"attributes\": 256,\n            \"methodImplementationFlags\": 64,\n            \"callingConvention\": 2,\n            \"isAbstract\": \"<boolean>\",\n            \"isConstructor\": \"<boolean>\",\n            \"isFinal\": \"<boolean>\",\n            \"isHideBySig\": \"<boolean>\",\n            \"isSpecialName\": \"<boolean>\",\n            \"isStatic\": \"<boolean>\",\n            \"isVirtual\": \"<boolean>\",\n            \"isAssembly\": \"<boolean>\",\n            \"isFamily\": \"<boolean>\",\n            \"isFamilyAndAssembly\": \"<boolean>\",\n            \"isFamilyOrAssembly\": \"<boolean>\",\n            \"isPrivate\": \"<boolean>\",\n            \"isPublic\": \"<boolean>\",\n            \"isConstructedGenericMethod\": \"<boolean>\",\n            \"isGenericMethod\": \"<boolean>\",\n            \"isGenericMethodDefinition\": \"<boolean>\",\n            \"containsGenericParameters\": \"<boolean>\",\n            \"methodHandle\": {\n              \"value\": {}\n            },\n            \"isSecurityCritical\": \"<boolean>\",\n            \"isSecuritySafeCritical\": \"<boolean>\",\n            \"isSecurityTransparent\": \"<boolean>\",\n            \"memberType\": 4,\n            \"returnParameter\": {\n              \"attributes\": 32768,\n              \"member\": {\n                \"memberType\": 128,\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\"\n              },\n              \"name\": \"<string>\",\n              \"parameterType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"position\": \"<integer>\",\n              \"isIn\": \"<boolean>\",\n              \"isLcid\": \"<boolean>\",\n              \"isOptional\": \"<boolean>\",\n              \"isOut\": \"<boolean>\",\n              \"isRetval\": \"<boolean>\",\n              \"defaultValue\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"rawDefaultValue\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"hasDefaultValue\": \"<boolean>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"metadataToken\": \"<integer>\"\n            },\n            \"returnType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"returnTypeCustomAttributes\": {}\n          },\n          \"fullName\": \"<string>\",\n          \"imageRuntimeVersion\": \"<string>\",\n          \"isDynamic\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"reflectionOnly\": \"<boolean>\",\n          \"isCollectible\": \"<boolean>\",\n          \"isFullyTrusted\": \"<boolean>\",\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"escapedCodeBase\": \"<string>\",\n          \"manifestModule\": {\n            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n          },\n          \"modules\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            }\n          ],\n          \"globalAssemblyCache\": \"<boolean>\",\n          \"hostContext\": \"<long>\",\n          \"securityRuleSet\": 1\n        },\n        \"module\": {\n          \"assembly\": {\n            \"definedTypes\": [\n              {\n                \"name\": \"<string>\",\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 191,\n                \"namespace\": \"<string>\",\n                \"assemblyQualifiedName\": \"<string>\",\n                \"fullName\": \"<string>\",\n                \"assembly\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"isInterface\": \"<boolean>\",\n                \"isNested\": \"<boolean>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"declaringMethod\": {\n                  \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"underlyingSystemType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"isTypeDefinition\": \"<boolean>\",\n                \"isArray\": \"<boolean>\",\n                \"isByRef\": \"<boolean>\",\n                \"isPointer\": \"<boolean>\",\n                \"isConstructedGenericType\": \"<boolean>\",\n                \"isGenericParameter\": \"<boolean>\",\n                \"isGenericTypeParameter\": \"<boolean>\",\n                \"isGenericMethodParameter\": \"<boolean>\",\n                \"isGenericType\": \"<boolean>\",\n                \"isGenericTypeDefinition\": \"<boolean>\",\n                \"isSZArray\": \"<boolean>\",\n                \"isVariableBoundArray\": \"<boolean>\",\n                \"isByRefLike\": \"<boolean>\",\n                \"isFunctionPointer\": \"<boolean>\",\n                \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                \"hasElementType\": \"<boolean>\",\n                \"genericTypeArguments\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ],\n                \"genericParameterPosition\": \"<integer>\",\n                \"genericParameterAttributes\": 32,\n                \"attributes\": 4096,\n                \"isAbstract\": \"<boolean>\",\n                \"isImport\": \"<boolean>\",\n                \"isSealed\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isClass\": \"<boolean>\",\n                \"isNestedAssembly\": \"<boolean>\",\n                \"isNestedFamANDAssem\": \"<boolean>\",\n                \"isNestedFamily\": \"<boolean>\",\n                \"isNestedFamORAssem\": \"<boolean>\",\n                \"isNestedPrivate\": \"<boolean>\",\n                \"isNestedPublic\": \"<boolean>\",\n                \"isNotPublic\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isAutoLayout\": \"<boolean>\",\n                \"isExplicitLayout\": \"<boolean>\",\n                \"isLayoutSequential\": \"<boolean>\",\n                \"isAnsiClass\": \"<boolean>\",\n                \"isAutoClass\": \"<boolean>\",\n                \"isUnicodeClass\": \"<boolean>\",\n                \"isCOMObject\": \"<boolean>\",\n                \"isContextful\": \"<boolean>\",\n                \"isEnum\": \"<boolean>\",\n                \"isMarshalByRef\": \"<boolean>\",\n                \"isPrimitive\": \"<boolean>\",\n                \"isValueType\": \"<boolean>\",\n                \"isSignatureType\": \"<boolean>\",\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"structLayoutAttribute\": {\n                  \"typeId\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"value\": 0\n                },\n                \"typeInitializer\": {\n                  \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                },\n                \"typeHandle\": {\n                  \"value\": {}\n                },\n                \"guid\": \"<uuid>\",\n                \"baseType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"isSerializable\": \"<boolean>\",\n                \"containsGenericParameters\": \"<boolean>\",\n                \"isVisible\": \"<boolean>\",\n                \"genericTypeParameters\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ],\n                \"declaredConstructors\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                  }\n                ],\n                \"declaredEvents\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 128,\n                    \"attributes\": 0,\n                    \"isSpecialName\": \"<boolean>\",\n                    \"addMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 1,\n                      \"methodImplementationFlags\": 8,\n                      \"callingConvention\": 2,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 16,\n                      \"returnParameter\": {\n                        \"attributes\": 2,\n                        \"member\": {\n                          \"memberType\": 32,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"removeMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 0,\n                      \"methodImplementationFlags\": 4096,\n                      \"callingConvention\": 2,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 16,\n                      \"returnParameter\": {\n                        \"attributes\": 32768,\n                        \"member\": {\n                          \"memberType\": 8,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"raiseMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 0,\n                      \"methodImplementationFlags\": 3,\n                      \"callingConvention\": 1,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 2,\n                      \"returnParameter\": {\n                        \"attributes\": 4096,\n                        \"member\": {\n                          \"memberType\": 16,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"isMulticast\": \"<boolean>\",\n                    \"eventHandlerType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  }\n                ],\n                \"declaredFields\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 16,\n                    \"attributes\": 32768,\n                    \"fieldType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"isInitOnly\": \"<boolean>\",\n                    \"isLiteral\": \"<boolean>\",\n                    \"isNotSerialized\": \"<boolean>\",\n                    \"isPinvokeImpl\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"fieldHandle\": {\n                      \"value\": {}\n                    }\n                  }\n                ],\n                \"declaredMembers\": [\n                  {\n                    \"memberType\": 2,\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\"\n                  }\n                ],\n                \"declaredMethods\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 8192,\n                    \"methodImplementationFlags\": 0,\n                    \"callingConvention\": 64,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 4,\n                    \"returnParameter\": {\n                      \"attributes\": 1,\n                      \"member\": {\n                        \"memberType\": 4,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  }\n                ],\n                \"declaredNestedTypes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                  }\n                ],\n                \"declaredProperties\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 32,\n                    \"propertyType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"attributes\": 32768,\n                    \"isSpecialName\": \"<boolean>\",\n                    \"canRead\": \"<boolean>\",\n                    \"canWrite\": \"<boolean>\",\n                    \"getMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 8192,\n                      \"methodImplementationFlags\": 64,\n                      \"callingConvention\": 64,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 2,\n                      \"returnParameter\": {\n                        \"attributes\": 0,\n                        \"member\": {\n                          \"memberType\": 16,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"setMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 64,\n                      \"methodImplementationFlags\": 0,\n                      \"callingConvention\": 2,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 1,\n                      \"returnParameter\": {\n                        \"attributes\": 4,\n                        \"member\": {\n                          \"memberType\": 32,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    }\n                  }\n                ],\n                \"implementedInterfaces\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ]\n              }\n            ],\n            \"exportedTypes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ],\n            \"codeBase\": \"<string>\",\n            \"entryPoint\": {\n              \"name\": \"<string>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\",\n              \"attributes\": 2,\n              \"methodImplementationFlags\": 2,\n              \"callingConvention\": 1,\n              \"isAbstract\": \"<boolean>\",\n              \"isConstructor\": \"<boolean>\",\n              \"isFinal\": \"<boolean>\",\n              \"isHideBySig\": \"<boolean>\",\n              \"isSpecialName\": \"<boolean>\",\n              \"isStatic\": \"<boolean>\",\n              \"isVirtual\": \"<boolean>\",\n              \"isAssembly\": \"<boolean>\",\n              \"isFamily\": \"<boolean>\",\n              \"isFamilyAndAssembly\": \"<boolean>\",\n              \"isFamilyOrAssembly\": \"<boolean>\",\n              \"isPrivate\": \"<boolean>\",\n              \"isPublic\": \"<boolean>\",\n              \"isConstructedGenericMethod\": \"<boolean>\",\n              \"isGenericMethod\": \"<boolean>\",\n              \"isGenericMethodDefinition\": \"<boolean>\",\n              \"containsGenericParameters\": \"<boolean>\",\n              \"methodHandle\": {\n                \"value\": {}\n              },\n              \"isSecurityCritical\": \"<boolean>\",\n              \"isSecuritySafeCritical\": \"<boolean>\",\n              \"isSecurityTransparent\": \"<boolean>\",\n              \"memberType\": 128,\n              \"returnParameter\": {\n                \"attributes\": 8192,\n                \"member\": {\n                  \"memberType\": 64,\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"name\": \"<string>\",\n                \"parameterType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"position\": \"<integer>\",\n                \"isIn\": \"<boolean>\",\n                \"isLcid\": \"<boolean>\",\n                \"isOptional\": \"<boolean>\",\n                \"isOut\": \"<boolean>\",\n                \"isRetval\": \"<boolean>\",\n                \"defaultValue\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"rawDefaultValue\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"hasDefaultValue\": \"<boolean>\",\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"metadataToken\": \"<integer>\"\n              },\n              \"returnType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"returnTypeCustomAttributes\": {}\n            },\n            \"fullName\": \"<string>\",\n            \"imageRuntimeVersion\": \"<string>\",\n            \"isDynamic\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"reflectionOnly\": \"<boolean>\",\n            \"isCollectible\": \"<boolean>\",\n            \"isFullyTrusted\": \"<boolean>\",\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"escapedCodeBase\": \"<string>\",\n            \"manifestModule\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"modules\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              }\n            ],\n            \"globalAssemblyCache\": \"<boolean>\",\n            \"hostContext\": \"<long>\",\n            \"securityRuleSet\": 1\n          },\n          \"fullyQualifiedName\": \"<string>\",\n          \"name\": \"<string>\",\n          \"mdStreamVersion\": \"<integer>\",\n          \"moduleVersionId\": \"<uuid>\",\n          \"scopeName\": \"<string>\",\n          \"moduleHandle\": {\n            \"mdStreamVersion\": \"<integer>\"\n          },\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"metadataToken\": \"<integer>\"\n        },\n        \"isInterface\": \"<boolean>\",\n        \"isNested\": \"<boolean>\",\n        \"declaringType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"declaringMethod\": {\n          \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n        },\n        \"reflectedType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"underlyingSystemType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"isTypeDefinition\": \"<boolean>\",\n        \"isArray\": \"<boolean>\",\n        \"isByRef\": \"<boolean>\",\n        \"isPointer\": \"<boolean>\",\n        \"isConstructedGenericType\": \"<boolean>\",\n        \"isGenericParameter\": \"<boolean>\",\n        \"isGenericTypeParameter\": \"<boolean>\",\n        \"isGenericMethodParameter\": \"<boolean>\",\n        \"isGenericType\": \"<boolean>\",\n        \"isGenericTypeDefinition\": \"<boolean>\",\n        \"isSZArray\": \"<boolean>\",\n        \"isVariableBoundArray\": \"<boolean>\",\n        \"isByRefLike\": \"<boolean>\",\n        \"isFunctionPointer\": \"<boolean>\",\n        \"isUnmanagedFunctionPointer\": \"<boolean>\",\n        \"hasElementType\": \"<boolean>\",\n        \"genericTypeArguments\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          }\n        ],\n        \"genericParameterPosition\": \"<integer>\",\n        \"genericParameterAttributes\": 8,\n        \"attributes\": 262144,\n        \"isAbstract\": \"<boolean>\",\n        \"isImport\": \"<boolean>\",\n        \"isSealed\": \"<boolean>\",\n        \"isSpecialName\": \"<boolean>\",\n        \"isClass\": \"<boolean>\",\n        \"isNestedAssembly\": \"<boolean>\",\n        \"isNestedFamANDAssem\": \"<boolean>\",\n        \"isNestedFamily\": \"<boolean>\",\n        \"isNestedFamORAssem\": \"<boolean>\",\n        \"isNestedPrivate\": \"<boolean>\",\n        \"isNestedPublic\": \"<boolean>\",\n        \"isNotPublic\": \"<boolean>\",\n        \"isPublic\": \"<boolean>\",\n        \"isAutoLayout\": \"<boolean>\",\n        \"isExplicitLayout\": \"<boolean>\",\n        \"isLayoutSequential\": \"<boolean>\",\n        \"isAnsiClass\": \"<boolean>\",\n        \"isAutoClass\": \"<boolean>\",\n        \"isUnicodeClass\": \"<boolean>\",\n        \"isCOMObject\": \"<boolean>\",\n        \"isContextful\": \"<boolean>\",\n        \"isEnum\": \"<boolean>\",\n        \"isMarshalByRef\": \"<boolean>\",\n        \"isPrimitive\": \"<boolean>\",\n        \"isValueType\": \"<boolean>\",\n        \"isSignatureType\": \"<boolean>\",\n        \"isSecurityCritical\": \"<boolean>\",\n        \"isSecuritySafeCritical\": \"<boolean>\",\n        \"isSecurityTransparent\": \"<boolean>\",\n        \"structLayoutAttribute\": {\n          \"typeId\": {\n            \"nullable\": true,\n            \"readOnly\": true\n          },\n          \"value\": 2\n        },\n        \"typeInitializer\": {\n          \"name\": \"<string>\",\n          \"declaringType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"reflectedType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"module\": {\n            \"assembly\": {\n              \"definedTypes\": [\n                {\n                  \"name\": \"<string>\",\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 4,\n                  \"namespace\": \"<string>\",\n                  \"assemblyQualifiedName\": \"<string>\",\n                  \"fullName\": \"<string>\",\n                  \"assembly\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"isInterface\": \"<boolean>\",\n                  \"isNested\": \"<boolean>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"declaringMethod\": {\n                    \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"underlyingSystemType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"isTypeDefinition\": \"<boolean>\",\n                  \"isArray\": \"<boolean>\",\n                  \"isByRef\": \"<boolean>\",\n                  \"isPointer\": \"<boolean>\",\n                  \"isConstructedGenericType\": \"<boolean>\",\n                  \"isGenericParameter\": \"<boolean>\",\n                  \"isGenericTypeParameter\": \"<boolean>\",\n                  \"isGenericMethodParameter\": \"<boolean>\",\n                  \"isGenericType\": \"<boolean>\",\n                  \"isGenericTypeDefinition\": \"<boolean>\",\n                  \"isSZArray\": \"<boolean>\",\n                  \"isVariableBoundArray\": \"<boolean>\",\n                  \"isByRefLike\": \"<boolean>\",\n                  \"isFunctionPointer\": \"<boolean>\",\n                  \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                  \"hasElementType\": \"<boolean>\",\n                  \"genericTypeArguments\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  ],\n                  \"genericParameterPosition\": \"<integer>\",\n                  \"genericParameterAttributes\": 1,\n                  \"attributes\": 4,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isImport\": \"<boolean>\",\n                  \"isSealed\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isClass\": \"<boolean>\",\n                  \"isNestedAssembly\": \"<boolean>\",\n                  \"isNestedFamANDAssem\": \"<boolean>\",\n                  \"isNestedFamily\": \"<boolean>\",\n                  \"isNestedFamORAssem\": \"<boolean>\",\n                  \"isNestedPrivate\": \"<boolean>\",\n                  \"isNestedPublic\": \"<boolean>\",\n                  \"isNotPublic\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isAutoLayout\": \"<boolean>\",\n                  \"isExplicitLayout\": \"<boolean>\",\n                  \"isLayoutSequential\": \"<boolean>\",\n                  \"isAnsiClass\": \"<boolean>\",\n                  \"isAutoClass\": \"<boolean>\",\n                  \"isUnicodeClass\": \"<boolean>\",\n                  \"isCOMObject\": \"<boolean>\",\n                  \"isContextful\": \"<boolean>\",\n                  \"isEnum\": \"<boolean>\",\n                  \"isMarshalByRef\": \"<boolean>\",\n                  \"isPrimitive\": \"<boolean>\",\n                  \"isValueType\": \"<boolean>\",\n                  \"isSignatureType\": \"<boolean>\",\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"structLayoutAttribute\": {\n                    \"typeId\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"value\": 3\n                  },\n                  \"typeInitializer\": {\n                    \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                  },\n                  \"typeHandle\": {\n                    \"value\": {}\n                  },\n                  \"guid\": \"<uuid>\",\n                  \"baseType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"isSerializable\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"isVisible\": \"<boolean>\",\n                  \"genericTypeParameters\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  ],\n                  \"declaredConstructors\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                    }\n                  ],\n                  \"declaredEvents\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"memberType\": 191,\n                      \"attributes\": 0,\n                      \"isSpecialName\": \"<boolean>\",\n                      \"addMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 64,\n                        \"methodImplementationFlags\": 256,\n                        \"callingConvention\": 1,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 64,\n                        \"returnParameter\": {\n                          \"attributes\": 8192,\n                          \"member\": {\n                            \"memberType\": 2,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"removeMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 8,\n                        \"methodImplementationFlags\": 65535,\n                        \"callingConvention\": 32,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 1,\n                        \"returnParameter\": {\n                          \"attributes\": 4,\n                          \"member\": {\n                            \"memberType\": 32,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"raiseMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 16,\n                        \"methodImplementationFlags\": 128,\n                        \"callingConvention\": 2,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 191,\n                        \"returnParameter\": {\n                          \"attributes\": 61440,\n                          \"member\": {\n                            \"memberType\": 4,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"isMulticast\": \"<boolean>\",\n                      \"eventHandlerType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    }\n                  ],\n                  \"declaredFields\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"memberType\": 191,\n                      \"attributes\": 2,\n                      \"fieldType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"isInitOnly\": \"<boolean>\",\n                      \"isLiteral\": \"<boolean>\",\n                      \"isNotSerialized\": \"<boolean>\",\n                      \"isPinvokeImpl\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"fieldHandle\": {\n                        \"value\": {}\n                      }\n                    }\n                  ],\n                  \"declaredMembers\": [\n                    {\n                      \"memberType\": 32,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    }\n                  ],\n                  \"declaredMethods\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 16,\n                      \"methodImplementationFlags\": 4096,\n                      \"callingConvention\": 2,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 1,\n                      \"returnParameter\": {\n                        \"attributes\": 0,\n                        \"member\": {\n                          \"memberType\": 191,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    }\n                  ],\n                  \"declaredNestedTypes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                    }\n                  ],\n                  \"declaredProperties\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"memberType\": 32,\n                      \"propertyType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"attributes\": 8192,\n                      \"isSpecialName\": \"<boolean>\",\n                      \"canRead\": \"<boolean>\",\n                      \"canWrite\": \"<boolean>\",\n                      \"getMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 32,\n                        \"methodImplementationFlags\": 3,\n                        \"callingConvention\": 2,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 64,\n                        \"returnParameter\": {\n                          \"attributes\": 16,\n                          \"member\": {\n                            \"memberType\": 1,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"setMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 2,\n                        \"methodImplementationFlags\": 32,\n                        \"callingConvention\": 1,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 64,\n                        \"returnParameter\": {\n                          \"attributes\": 16384,\n                          \"member\": {\n                            \"memberType\": 8,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      }\n                    }\n                  ],\n                  \"implementedInterfaces\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  ]\n                }\n              ],\n              \"exportedTypes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"codeBase\": \"<string>\",\n              \"entryPoint\": {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"attributes\": 64,\n                \"methodImplementationFlags\": 256,\n                \"callingConvention\": 3,\n                \"isAbstract\": \"<boolean>\",\n                \"isConstructor\": \"<boolean>\",\n                \"isFinal\": \"<boolean>\",\n                \"isHideBySig\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isStatic\": \"<boolean>\",\n                \"isVirtual\": \"<boolean>\",\n                \"isAssembly\": \"<boolean>\",\n                \"isFamily\": \"<boolean>\",\n                \"isFamilyAndAssembly\": \"<boolean>\",\n                \"isFamilyOrAssembly\": \"<boolean>\",\n                \"isPrivate\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isConstructedGenericMethod\": \"<boolean>\",\n                \"isGenericMethod\": \"<boolean>\",\n                \"isGenericMethodDefinition\": \"<boolean>\",\n                \"containsGenericParameters\": \"<boolean>\",\n                \"methodHandle\": {\n                  \"value\": {}\n                },\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"memberType\": 8,\n                \"returnParameter\": {\n                  \"attributes\": 4,\n                  \"member\": {\n                    \"memberType\": 4,\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"name\": \"<string>\",\n                  \"parameterType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"position\": \"<integer>\",\n                  \"isIn\": \"<boolean>\",\n                  \"isLcid\": \"<boolean>\",\n                  \"isOptional\": \"<boolean>\",\n                  \"isOut\": \"<boolean>\",\n                  \"isRetval\": \"<boolean>\",\n                  \"defaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"rawDefaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"hasDefaultValue\": \"<boolean>\",\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"returnType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"returnTypeCustomAttributes\": {}\n              },\n              \"fullName\": \"<string>\",\n              \"imageRuntimeVersion\": \"<string>\",\n              \"isDynamic\": \"<boolean>\",\n              \"location\": \"<string>\",\n              \"reflectionOnly\": \"<boolean>\",\n              \"isCollectible\": \"<boolean>\",\n              \"isFullyTrusted\": \"<boolean>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"escapedCodeBase\": \"<string>\",\n              \"manifestModule\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"modules\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                }\n              ],\n              \"globalAssemblyCache\": \"<boolean>\",\n              \"hostContext\": \"<long>\",\n              \"securityRuleSet\": 0\n            },\n            \"fullyQualifiedName\": \"<string>\",\n            \"name\": \"<string>\",\n            \"mdStreamVersion\": \"<integer>\",\n            \"moduleVersionId\": \"<uuid>\",\n            \"scopeName\": \"<string>\",\n            \"moduleHandle\": {\n              \"mdStreamVersion\": \"<integer>\"\n            },\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"metadataToken\": \"<integer>\"\n          },\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"isCollectible\": \"<boolean>\",\n          \"metadataToken\": \"<integer>\",\n          \"attributes\": 53248,\n          \"methodImplementationFlags\": 2,\n          \"callingConvention\": 3,\n          \"isAbstract\": \"<boolean>\",\n          \"isConstructor\": \"<boolean>\",\n          \"isFinal\": \"<boolean>\",\n          \"isHideBySig\": \"<boolean>\",\n          \"isSpecialName\": \"<boolean>\",\n          \"isStatic\": \"<boolean>\",\n          \"isVirtual\": \"<boolean>\",\n          \"isAssembly\": \"<boolean>\",\n          \"isFamily\": \"<boolean>\",\n          \"isFamilyAndAssembly\": \"<boolean>\",\n          \"isFamilyOrAssembly\": \"<boolean>\",\n          \"isPrivate\": \"<boolean>\",\n          \"isPublic\": \"<boolean>\",\n          \"isConstructedGenericMethod\": \"<boolean>\",\n          \"isGenericMethod\": \"<boolean>\",\n          \"isGenericMethodDefinition\": \"<boolean>\",\n          \"containsGenericParameters\": \"<boolean>\",\n          \"methodHandle\": {\n            \"value\": {}\n          },\n          \"isSecurityCritical\": \"<boolean>\",\n          \"isSecuritySafeCritical\": \"<boolean>\",\n          \"isSecurityTransparent\": \"<boolean>\",\n          \"memberType\": 128\n        },\n        \"typeHandle\": {\n          \"value\": {}\n        },\n        \"guid\": \"<uuid>\",\n        \"baseType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"isSerializable\": \"<boolean>\",\n        \"containsGenericParameters\": \"<boolean>\",\n        \"isVisible\": \"<boolean>\"\n      },\n      \"reflectedType\": {\n        \"name\": \"<string>\",\n        \"customAttributes\": [\n          {\n            \"attributeType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"constructor\": {\n              \"name\": \"<string>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"module\": {\n                \"assembly\": {\n                  \"definedTypes\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"memberType\": 2,\n                      \"namespace\": \"<string>\",\n                      \"assemblyQualifiedName\": \"<string>\",\n                      \"fullName\": \"<string>\",\n                      \"assembly\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"isInterface\": \"<boolean>\",\n                      \"isNested\": \"<boolean>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"declaringMethod\": {\n                        \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"underlyingSystemType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"isTypeDefinition\": \"<boolean>\",\n                      \"isArray\": \"<boolean>\",\n                      \"isByRef\": \"<boolean>\",\n                      \"isPointer\": \"<boolean>\",\n                      \"isConstructedGenericType\": \"<boolean>\",\n                      \"isGenericParameter\": \"<boolean>\",\n                      \"isGenericTypeParameter\": \"<boolean>\",\n                      \"isGenericMethodParameter\": \"<boolean>\",\n                      \"isGenericType\": \"<boolean>\",\n                      \"isGenericTypeDefinition\": \"<boolean>\",\n                      \"isSZArray\": \"<boolean>\",\n                      \"isVariableBoundArray\": \"<boolean>\",\n                      \"isByRefLike\": \"<boolean>\",\n                      \"isFunctionPointer\": \"<boolean>\",\n                      \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                      \"hasElementType\": \"<boolean>\",\n                      \"genericTypeArguments\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        }\n                      ],\n                      \"genericParameterPosition\": \"<integer>\",\n                      \"genericParameterAttributes\": 28,\n                      \"attributes\": 24,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isImport\": \"<boolean>\",\n                      \"isSealed\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isClass\": \"<boolean>\",\n                      \"isNestedAssembly\": \"<boolean>\",\n                      \"isNestedFamANDAssem\": \"<boolean>\",\n                      \"isNestedFamily\": \"<boolean>\",\n                      \"isNestedFamORAssem\": \"<boolean>\",\n                      \"isNestedPrivate\": \"<boolean>\",\n                      \"isNestedPublic\": \"<boolean>\",\n                      \"isNotPublic\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isAutoLayout\": \"<boolean>\",\n                      \"isExplicitLayout\": \"<boolean>\",\n                      \"isLayoutSequential\": \"<boolean>\",\n                      \"isAnsiClass\": \"<boolean>\",\n                      \"isAutoClass\": \"<boolean>\",\n                      \"isUnicodeClass\": \"<boolean>\",\n                      \"isCOMObject\": \"<boolean>\",\n                      \"isContextful\": \"<boolean>\",\n                      \"isEnum\": \"<boolean>\",\n                      \"isMarshalByRef\": \"<boolean>\",\n                      \"isPrimitive\": \"<boolean>\",\n                      \"isValueType\": \"<boolean>\",\n                      \"isSignatureType\": \"<boolean>\",\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"structLayoutAttribute\": {\n                        \"typeId\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"value\": 3\n                      },\n                      \"typeInitializer\": {\n                        \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                      },\n                      \"typeHandle\": {\n                        \"value\": {}\n                      },\n                      \"guid\": \"<uuid>\",\n                      \"baseType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"isSerializable\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"isVisible\": \"<boolean>\",\n                      \"genericTypeParameters\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        }\n                      ],\n                      \"declaredConstructors\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                        }\n                      ],\n                      \"declaredEvents\": [\n                        {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"memberType\": 8,\n                          \"attributes\": 1024,\n                          \"isSpecialName\": \"<boolean>\",\n                          \"addMethod\": {\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\",\n                            \"attributes\": 256,\n                            \"methodImplementationFlags\": 65535,\n                            \"callingConvention\": 2,\n                            \"isAbstract\": \"<boolean>\",\n                            \"isConstructor\": \"<boolean>\",\n                            \"isFinal\": \"<boolean>\",\n                            \"isHideBySig\": \"<boolean>\",\n                            \"isSpecialName\": \"<boolean>\",\n                            \"isStatic\": \"<boolean>\",\n                            \"isVirtual\": \"<boolean>\",\n                            \"isAssembly\": \"<boolean>\",\n                            \"isFamily\": \"<boolean>\",\n                            \"isFamilyAndAssembly\": \"<boolean>\",\n                            \"isFamilyOrAssembly\": \"<boolean>\",\n                            \"isPrivate\": \"<boolean>\",\n                            \"isPublic\": \"<boolean>\",\n                            \"isConstructedGenericMethod\": \"<boolean>\",\n                            \"isGenericMethod\": \"<boolean>\",\n                            \"isGenericMethodDefinition\": \"<boolean>\",\n                            \"containsGenericParameters\": \"<boolean>\",\n                            \"methodHandle\": {\n                              \"value\": {}\n                            },\n                            \"isSecurityCritical\": \"<boolean>\",\n                            \"isSecuritySafeCritical\": \"<boolean>\",\n                            \"isSecurityTransparent\": \"<boolean>\",\n                            \"memberType\": 1,\n                            \"returnParameter\": {\n                              \"attributes\": 16384,\n                              \"member\": {\n                                \"memberType\": 191,\n                                \"name\": \"<string>\",\n                                \"declaringType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"reflectedType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"module\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                                },\n                                \"customAttributes\": [\n                                  {\n                                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                  }\n                                ],\n                                \"isCollectible\": \"<boolean>\",\n                                \"metadataToken\": \"<integer>\"\n                              },\n                              \"name\": \"<string>\",\n                              \"parameterType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"position\": \"<integer>\",\n                              \"isIn\": \"<boolean>\",\n                              \"isLcid\": \"<boolean>\",\n                              \"isOptional\": \"<boolean>\",\n                              \"isOut\": \"<boolean>\",\n                              \"isRetval\": \"<boolean>\",\n                              \"defaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"rawDefaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"hasDefaultValue\": \"<boolean>\",\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"returnType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"returnTypeCustomAttributes\": {}\n                          },\n                          \"removeMethod\": {\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\",\n                            \"attributes\": 64,\n                            \"methodImplementationFlags\": 4,\n                            \"callingConvention\": 32,\n                            \"isAbstract\": \"<boolean>\",\n                            \"isConstructor\": \"<boolean>\",\n                            \"isFinal\": \"<boolean>\",\n                            \"isHideBySig\": \"<boolean>\",\n                            \"isSpecialName\": \"<boolean>\",\n                            \"isStatic\": \"<boolean>\",\n                            \"isVirtual\": \"<boolean>\",\n                            \"isAssembly\": \"<boolean>\",\n                            \"isFamily\": \"<boolean>\",\n                            \"isFamilyAndAssembly\": \"<boolean>\",\n                            \"isFamilyOrAssembly\": \"<boolean>\",\n                            \"isPrivate\": \"<boolean>\",\n                            \"isPublic\": \"<boolean>\",\n                            \"isConstructedGenericMethod\": \"<boolean>\",\n                            \"isGenericMethod\": \"<boolean>\",\n                            \"isGenericMethodDefinition\": \"<boolean>\",\n                            \"containsGenericParameters\": \"<boolean>\",\n                            \"methodHandle\": {\n                              \"value\": {}\n                            },\n                            \"isSecurityCritical\": \"<boolean>\",\n                            \"isSecuritySafeCritical\": \"<boolean>\",\n                            \"isSecurityTransparent\": \"<boolean>\",\n                            \"memberType\": 32,\n                            \"returnParameter\": {\n                              \"attributes\": 4096,\n                              \"member\": {\n                                \"memberType\": 191,\n                                \"name\": \"<string>\",\n                                \"declaringType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"reflectedType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"module\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                                },\n                                \"customAttributes\": [\n                                  {\n                                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                  }\n                                ],\n                                \"isCollectible\": \"<boolean>\",\n                                \"metadataToken\": \"<integer>\"\n                              },\n                              \"name\": \"<string>\",\n                              \"parameterType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"position\": \"<integer>\",\n                              \"isIn\": \"<boolean>\",\n                              \"isLcid\": \"<boolean>\",\n                              \"isOptional\": \"<boolean>\",\n                              \"isOut\": \"<boolean>\",\n                              \"isRetval\": \"<boolean>\",\n                              \"defaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"rawDefaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"hasDefaultValue\": \"<boolean>\",\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"returnType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"returnTypeCustomAttributes\": {}\n                          },\n                          \"raiseMethod\": {\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\",\n                            \"attributes\": 8192,\n                            \"methodImplementationFlags\": 64,\n                            \"callingConvention\": 32,\n                            \"isAbstract\": \"<boolean>\",\n                            \"isConstructor\": \"<boolean>\",\n                            \"isFinal\": \"<boolean>\",\n                            \"isHideBySig\": \"<boolean>\",\n                            \"isSpecialName\": \"<boolean>\",\n                            \"isStatic\": \"<boolean>\",\n                            \"isVirtual\": \"<boolean>\",\n                            \"isAssembly\": \"<boolean>\",\n                            \"isFamily\": \"<boolean>\",\n                            \"isFamilyAndAssembly\": \"<boolean>\",\n                            \"isFamilyOrAssembly\": \"<boolean>\",\n                            \"isPrivate\": \"<boolean>\",\n                            \"isPublic\": \"<boolean>\",\n                            \"isConstructedGenericMethod\": \"<boolean>\",\n                            \"isGenericMethod\": \"<boolean>\",\n                            \"isGenericMethodDefinition\": \"<boolean>\",\n                            \"containsGenericParameters\": \"<boolean>\",\n                            \"methodHandle\": {\n                              \"value\": {}\n                            },\n                            \"isSecurityCritical\": \"<boolean>\",\n                            \"isSecuritySafeCritical\": \"<boolean>\",\n                            \"isSecurityTransparent\": \"<boolean>\",\n                            \"memberType\": 32,\n                            \"returnParameter\": {\n                              \"attributes\": 2,\n                              \"member\": {\n                                \"memberType\": 1,\n                                \"name\": \"<string>\",\n                                \"declaringType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"reflectedType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"module\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                                },\n                                \"customAttributes\": [\n                                  {\n                                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                  }\n                                ],\n                                \"isCollectible\": \"<boolean>\",\n                                \"metadataToken\": \"<integer>\"\n                              },\n                              \"name\": \"<string>\",\n                              \"parameterType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"position\": \"<integer>\",\n                              \"isIn\": \"<boolean>\",\n                              \"isLcid\": \"<boolean>\",\n                              \"isOptional\": \"<boolean>\",\n                              \"isOut\": \"<boolean>\",\n                              \"isRetval\": \"<boolean>\",\n                              \"defaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"rawDefaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"hasDefaultValue\": \"<boolean>\",\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"returnType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"returnTypeCustomAttributes\": {}\n                          },\n                          \"isMulticast\": \"<boolean>\",\n                          \"eventHandlerType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          }\n                        }\n                      ],\n                      \"declaredFields\": [\n                        {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"memberType\": 1,\n                          \"attributes\": 8192,\n                          \"fieldType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"isInitOnly\": \"<boolean>\",\n                          \"isLiteral\": \"<boolean>\",\n                          \"isNotSerialized\": \"<boolean>\",\n                          \"isPinvokeImpl\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"fieldHandle\": {\n                            \"value\": {}\n                          }\n                        }\n                      ],\n                      \"declaredMembers\": [\n                        {\n                          \"memberType\": 16,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        }\n                      ],\n                      \"declaredMethods\": [\n                        {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 64,\n                          \"methodImplementationFlags\": 1,\n                          \"callingConvention\": 1,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 2,\n                          \"returnParameter\": {\n                            \"attributes\": 8192,\n                            \"member\": {\n                              \"memberType\": 2,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        }\n                      ],\n                      \"declaredNestedTypes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                        }\n                      ],\n                      \"declaredProperties\": [\n                        {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"memberType\": 16,\n                          \"propertyType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"attributes\": 0,\n                          \"isSpecialName\": \"<boolean>\",\n                          \"canRead\": \"<boolean>\",\n                          \"canWrite\": \"<boolean>\",\n                          \"getMethod\": {\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\",\n                            \"attributes\": 1,\n                            \"methodImplementationFlags\": 3,\n                            \"callingConvention\": 2,\n                            \"isAbstract\": \"<boolean>\",\n                            \"isConstructor\": \"<boolean>\",\n                            \"isFinal\": \"<boolean>\",\n                            \"isHideBySig\": \"<boolean>\",\n                            \"isSpecialName\": \"<boolean>\",\n                            \"isStatic\": \"<boolean>\",\n                            \"isVirtual\": \"<boolean>\",\n                            \"isAssembly\": \"<boolean>\",\n                            \"isFamily\": \"<boolean>\",\n                            \"isFamilyAndAssembly\": \"<boolean>\",\n                            \"isFamilyOrAssembly\": \"<boolean>\",\n                            \"isPrivate\": \"<boolean>\",\n                            \"isPublic\": \"<boolean>\",\n                            \"isConstructedGenericMethod\": \"<boolean>\",\n                            \"isGenericMethod\": \"<boolean>\",\n                            \"isGenericMethodDefinition\": \"<boolean>\",\n                            \"containsGenericParameters\": \"<boolean>\",\n                            \"methodHandle\": {\n                              \"value\": {}\n                            },\n                            \"isSecurityCritical\": \"<boolean>\",\n                            \"isSecuritySafeCritical\": \"<boolean>\",\n                            \"isSecurityTransparent\": \"<boolean>\",\n                            \"memberType\": 2,\n                            \"returnParameter\": {\n                              \"attributes\": 8192,\n                              \"member\": {\n                                \"memberType\": 128,\n                                \"name\": \"<string>\",\n                                \"declaringType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"reflectedType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"module\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                                },\n                                \"customAttributes\": [\n                                  {\n                                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                  }\n                                ],\n                                \"isCollectible\": \"<boolean>\",\n                                \"metadataToken\": \"<integer>\"\n                              },\n                              \"name\": \"<string>\",\n                              \"parameterType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"position\": \"<integer>\",\n                              \"isIn\": \"<boolean>\",\n                              \"isLcid\": \"<boolean>\",\n                              \"isOptional\": \"<boolean>\",\n                              \"isOut\": \"<boolean>\",\n                              \"isRetval\": \"<boolean>\",\n                              \"defaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"rawDefaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"hasDefaultValue\": \"<boolean>\",\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"returnType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"returnTypeCustomAttributes\": {}\n                          },\n                          \"setMethod\": {\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\",\n                            \"attributes\": 256,\n                            \"methodImplementationFlags\": 0,\n                            \"callingConvention\": 32,\n                            \"isAbstract\": \"<boolean>\",\n                            \"isConstructor\": \"<boolean>\",\n                            \"isFinal\": \"<boolean>\",\n                            \"isHideBySig\": \"<boolean>\",\n                            \"isSpecialName\": \"<boolean>\",\n                            \"isStatic\": \"<boolean>\",\n                            \"isVirtual\": \"<boolean>\",\n                            \"isAssembly\": \"<boolean>\",\n                            \"isFamily\": \"<boolean>\",\n                            \"isFamilyAndAssembly\": \"<boolean>\",\n                            \"isFamilyOrAssembly\": \"<boolean>\",\n                            \"isPrivate\": \"<boolean>\",\n                            \"isPublic\": \"<boolean>\",\n                            \"isConstructedGenericMethod\": \"<boolean>\",\n                            \"isGenericMethod\": \"<boolean>\",\n                            \"isGenericMethodDefinition\": \"<boolean>\",\n                            \"containsGenericParameters\": \"<boolean>\",\n                            \"methodHandle\": {\n                              \"value\": {}\n                            },\n                            \"isSecurityCritical\": \"<boolean>\",\n                            \"isSecuritySafeCritical\": \"<boolean>\",\n                            \"isSecurityTransparent\": \"<boolean>\",\n                            \"memberType\": 32,\n                            \"returnParameter\": {\n                              \"attributes\": 32768,\n                              \"member\": {\n                                \"memberType\": 128,\n                                \"name\": \"<string>\",\n                                \"declaringType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"reflectedType\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                                },\n                                \"module\": {\n                                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                                },\n                                \"customAttributes\": [\n                                  {\n                                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                  }\n                                ],\n                                \"isCollectible\": \"<boolean>\",\n                                \"metadataToken\": \"<integer>\"\n                              },\n                              \"name\": \"<string>\",\n                              \"parameterType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"position\": \"<integer>\",\n                              \"isIn\": \"<boolean>\",\n                              \"isLcid\": \"<boolean>\",\n                              \"isOptional\": \"<boolean>\",\n                              \"isOut\": \"<boolean>\",\n                              \"isRetval\": \"<boolean>\",\n                              \"defaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"rawDefaultValue\": {\n                                \"nullable\": true,\n                                \"readOnly\": true\n                              },\n                              \"hasDefaultValue\": \"<boolean>\",\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"returnType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"returnTypeCustomAttributes\": {}\n                          }\n                        }\n                      ],\n                      \"implementedInterfaces\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        }\n                      ]\n                    }\n                  ],\n                  \"exportedTypes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  ],\n                  \"codeBase\": \"<string>\",\n                  \"entryPoint\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 512,\n                    \"methodImplementationFlags\": 1,\n                    \"callingConvention\": 64,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 191,\n                    \"returnParameter\": {\n                      \"attributes\": 1,\n                      \"member\": {\n                        \"memberType\": 128,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"fullName\": \"<string>\",\n                  \"imageRuntimeVersion\": \"<string>\",\n                  \"isDynamic\": \"<boolean>\",\n                  \"location\": \"<string>\",\n                  \"reflectionOnly\": \"<boolean>\",\n                  \"isCollectible\": \"<boolean>\",\n                  \"isFullyTrusted\": \"<boolean>\",\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"escapedCodeBase\": \"<string>\",\n                  \"manifestModule\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"modules\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    }\n                  ],\n                  \"globalAssemblyCache\": \"<boolean>\",\n                  \"hostContext\": \"<long>\",\n                  \"securityRuleSet\": 0\n                },\n                \"fullyQualifiedName\": \"<string>\",\n                \"name\": \"<string>\",\n                \"mdStreamVersion\": \"<integer>\",\n                \"moduleVersionId\": \"<uuid>\",\n                \"scopeName\": \"<string>\",\n                \"moduleHandle\": {\n                  \"mdStreamVersion\": \"<integer>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"metadataToken\": \"<integer>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\",\n              \"attributes\": 512,\n              \"methodImplementationFlags\": 3,\n              \"callingConvention\": 32,\n              \"isAbstract\": \"<boolean>\",\n              \"isConstructor\": \"<boolean>\",\n              \"isFinal\": \"<boolean>\",\n              \"isHideBySig\": \"<boolean>\",\n              \"isSpecialName\": \"<boolean>\",\n              \"isStatic\": \"<boolean>\",\n              \"isVirtual\": \"<boolean>\",\n              \"isAssembly\": \"<boolean>\",\n              \"isFamily\": \"<boolean>\",\n              \"isFamilyAndAssembly\": \"<boolean>\",\n              \"isFamilyOrAssembly\": \"<boolean>\",\n              \"isPrivate\": \"<boolean>\",\n              \"isPublic\": \"<boolean>\",\n              \"isConstructedGenericMethod\": \"<boolean>\",\n              \"isGenericMethod\": \"<boolean>\",\n              \"isGenericMethodDefinition\": \"<boolean>\",\n              \"containsGenericParameters\": \"<boolean>\",\n              \"methodHandle\": {\n                \"value\": {}\n              },\n              \"isSecurityCritical\": \"<boolean>\",\n              \"isSecuritySafeCritical\": \"<boolean>\",\n              \"isSecurityTransparent\": \"<boolean>\",\n              \"memberType\": 16\n            },\n            \"constructorArguments\": [\n              {\n                \"argumentType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"value\": {\n                  \"nullable\": true\n                }\n              }\n            ],\n            \"namedArguments\": [\n              {\n                \"memberInfo\": {\n                  \"memberType\": 16,\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"typedValue\": {\n                  \"argumentType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"value\": {\n                    \"nullable\": true\n                  }\n                },\n                \"memberName\": \"<string>\",\n                \"isField\": \"<boolean>\"\n              }\n            ]\n          }\n        ],\n        \"isCollectible\": \"<boolean>\",\n        \"metadataToken\": \"<integer>\",\n        \"memberType\": 128,\n        \"namespace\": \"<string>\",\n        \"assemblyQualifiedName\": \"<string>\",\n        \"fullName\": \"<string>\",\n        \"assembly\": {\n          \"definedTypes\": [\n            {\n              \"name\": \"<string>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\",\n              \"memberType\": 16,\n              \"namespace\": \"<string>\",\n              \"assemblyQualifiedName\": \"<string>\",\n              \"fullName\": \"<string>\",\n              \"assembly\": {\n                \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"isInterface\": \"<boolean>\",\n              \"isNested\": \"<boolean>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"declaringMethod\": {\n                \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"underlyingSystemType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"isTypeDefinition\": \"<boolean>\",\n              \"isArray\": \"<boolean>\",\n              \"isByRef\": \"<boolean>\",\n              \"isPointer\": \"<boolean>\",\n              \"isConstructedGenericType\": \"<boolean>\",\n              \"isGenericParameter\": \"<boolean>\",\n              \"isGenericTypeParameter\": \"<boolean>\",\n              \"isGenericMethodParameter\": \"<boolean>\",\n              \"isGenericType\": \"<boolean>\",\n              \"isGenericTypeDefinition\": \"<boolean>\",\n              \"isSZArray\": \"<boolean>\",\n              \"isVariableBoundArray\": \"<boolean>\",\n              \"isByRefLike\": \"<boolean>\",\n              \"isFunctionPointer\": \"<boolean>\",\n              \"isUnmanagedFunctionPointer\": \"<boolean>\",\n              \"hasElementType\": \"<boolean>\",\n              \"genericTypeArguments\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"genericParameterPosition\": \"<integer>\",\n              \"genericParameterAttributes\": 8,\n              \"attributes\": 24,\n              \"isAbstract\": \"<boolean>\",\n              \"isImport\": \"<boolean>\",\n              \"isSealed\": \"<boolean>\",\n              \"isSpecialName\": \"<boolean>\",\n              \"isClass\": \"<boolean>\",\n              \"isNestedAssembly\": \"<boolean>\",\n              \"isNestedFamANDAssem\": \"<boolean>\",\n              \"isNestedFamily\": \"<boolean>\",\n              \"isNestedFamORAssem\": \"<boolean>\",\n              \"isNestedPrivate\": \"<boolean>\",\n              \"isNestedPublic\": \"<boolean>\",\n              \"isNotPublic\": \"<boolean>\",\n              \"isPublic\": \"<boolean>\",\n              \"isAutoLayout\": \"<boolean>\",\n              \"isExplicitLayout\": \"<boolean>\",\n              \"isLayoutSequential\": \"<boolean>\",\n              \"isAnsiClass\": \"<boolean>\",\n              \"isAutoClass\": \"<boolean>\",\n              \"isUnicodeClass\": \"<boolean>\",\n              \"isCOMObject\": \"<boolean>\",\n              \"isContextful\": \"<boolean>\",\n              \"isEnum\": \"<boolean>\",\n              \"isMarshalByRef\": \"<boolean>\",\n              \"isPrimitive\": \"<boolean>\",\n              \"isValueType\": \"<boolean>\",\n              \"isSignatureType\": \"<boolean>\",\n              \"isSecurityCritical\": \"<boolean>\",\n              \"isSecuritySafeCritical\": \"<boolean>\",\n              \"isSecurityTransparent\": \"<boolean>\",\n              \"structLayoutAttribute\": {\n                \"typeId\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"value\": 3\n              },\n              \"typeInitializer\": {\n                \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n              },\n              \"typeHandle\": {\n                \"value\": {}\n              },\n              \"guid\": \"<uuid>\",\n              \"baseType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"isSerializable\": \"<boolean>\",\n              \"containsGenericParameters\": \"<boolean>\",\n              \"isVisible\": \"<boolean>\",\n              \"genericTypeParameters\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"declaredConstructors\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                }\n              ],\n              \"declaredEvents\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 128,\n                  \"attributes\": 512,\n                  \"isSpecialName\": \"<boolean>\",\n                  \"addMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 4096,\n                    \"methodImplementationFlags\": 1,\n                    \"callingConvention\": 32,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 8,\n                    \"returnParameter\": {\n                      \"attributes\": 4,\n                      \"member\": {\n                        \"memberType\": 128,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"removeMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 1024,\n                    \"methodImplementationFlags\": 256,\n                    \"callingConvention\": 32,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 64,\n                    \"returnParameter\": {\n                      \"attributes\": 16384,\n                      \"member\": {\n                        \"memberType\": 191,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"raiseMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 3,\n                    \"methodImplementationFlags\": 2,\n                    \"callingConvention\": 32,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 16,\n                    \"returnParameter\": {\n                      \"attributes\": 0,\n                      \"member\": {\n                        \"memberType\": 4,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"isMulticast\": \"<boolean>\",\n                  \"eventHandlerType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                }\n              ],\n              \"declaredFields\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 191,\n                  \"attributes\": 4096,\n                  \"fieldType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"isInitOnly\": \"<boolean>\",\n                  \"isLiteral\": \"<boolean>\",\n                  \"isNotSerialized\": \"<boolean>\",\n                  \"isPinvokeImpl\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"fieldHandle\": {\n                    \"value\": {}\n                  }\n                }\n              ],\n              \"declaredMembers\": [\n                {\n                  \"memberType\": 64,\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\"\n                }\n              ],\n              \"declaredMethods\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 16384,\n                  \"methodImplementationFlags\": 32,\n                  \"callingConvention\": 1,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 128,\n                  \"returnParameter\": {\n                    \"attributes\": 1,\n                    \"member\": {\n                      \"memberType\": 2,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                }\n              ],\n              \"declaredNestedTypes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                }\n              ],\n              \"declaredProperties\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 2,\n                  \"propertyType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"attributes\": 1024,\n                  \"isSpecialName\": \"<boolean>\",\n                  \"canRead\": \"<boolean>\",\n                  \"canWrite\": \"<boolean>\",\n                  \"getMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 8,\n                    \"methodImplementationFlags\": 0,\n                    \"callingConvention\": 64,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 191,\n                    \"returnParameter\": {\n                      \"attributes\": 8,\n                      \"member\": {\n                        \"memberType\": 4,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"setMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 256,\n                    \"methodImplementationFlags\": 128,\n                    \"callingConvention\": 64,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 191,\n                    \"returnParameter\": {\n                      \"attributes\": 2,\n                      \"member\": {\n                        \"memberType\": 16,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  }\n                }\n              ],\n              \"implementedInterfaces\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ]\n            }\n          ],\n          \"exportedTypes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            }\n          ],\n          \"codeBase\": \"<string>\",\n          \"entryPoint\": {\n            \"name\": \"<string>\",\n            \"declaringType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"reflectedType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"module\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"isCollectible\": \"<boolean>\",\n            \"metadataToken\": \"<integer>\",\n            \"attributes\": 5,\n            \"methodImplementationFlags\": 3,\n            \"callingConvention\": 64,\n            \"isAbstract\": \"<boolean>\",\n            \"isConstructor\": \"<boolean>\",\n            \"isFinal\": \"<boolean>\",\n            \"isHideBySig\": \"<boolean>\",\n            \"isSpecialName\": \"<boolean>\",\n            \"isStatic\": \"<boolean>\",\n            \"isVirtual\": \"<boolean>\",\n            \"isAssembly\": \"<boolean>\",\n            \"isFamily\": \"<boolean>\",\n            \"isFamilyAndAssembly\": \"<boolean>\",\n            \"isFamilyOrAssembly\": \"<boolean>\",\n            \"isPrivate\": \"<boolean>\",\n            \"isPublic\": \"<boolean>\",\n            \"isConstructedGenericMethod\": \"<boolean>\",\n            \"isGenericMethod\": \"<boolean>\",\n            \"isGenericMethodDefinition\": \"<boolean>\",\n            \"containsGenericParameters\": \"<boolean>\",\n            \"methodHandle\": {\n              \"value\": {}\n            },\n            \"isSecurityCritical\": \"<boolean>\",\n            \"isSecuritySafeCritical\": \"<boolean>\",\n            \"isSecurityTransparent\": \"<boolean>\",\n            \"memberType\": 1,\n            \"returnParameter\": {\n              \"attributes\": 1,\n              \"member\": {\n                \"memberType\": 64,\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\"\n              },\n              \"name\": \"<string>\",\n              \"parameterType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"position\": \"<integer>\",\n              \"isIn\": \"<boolean>\",\n              \"isLcid\": \"<boolean>\",\n              \"isOptional\": \"<boolean>\",\n              \"isOut\": \"<boolean>\",\n              \"isRetval\": \"<boolean>\",\n              \"defaultValue\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"rawDefaultValue\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"hasDefaultValue\": \"<boolean>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"metadataToken\": \"<integer>\"\n            },\n            \"returnType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"returnTypeCustomAttributes\": {}\n          },\n          \"fullName\": \"<string>\",\n          \"imageRuntimeVersion\": \"<string>\",\n          \"isDynamic\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"reflectionOnly\": \"<boolean>\",\n          \"isCollectible\": \"<boolean>\",\n          \"isFullyTrusted\": \"<boolean>\",\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"escapedCodeBase\": \"<string>\",\n          \"manifestModule\": {\n            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n          },\n          \"modules\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            }\n          ],\n          \"globalAssemblyCache\": \"<boolean>\",\n          \"hostContext\": \"<long>\",\n          \"securityRuleSet\": 1\n        },\n        \"module\": {\n          \"assembly\": {\n            \"definedTypes\": [\n              {\n                \"name\": \"<string>\",\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"memberType\": 32,\n                \"namespace\": \"<string>\",\n                \"assemblyQualifiedName\": \"<string>\",\n                \"fullName\": \"<string>\",\n                \"assembly\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"isInterface\": \"<boolean>\",\n                \"isNested\": \"<boolean>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"declaringMethod\": {\n                  \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"underlyingSystemType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"isTypeDefinition\": \"<boolean>\",\n                \"isArray\": \"<boolean>\",\n                \"isByRef\": \"<boolean>\",\n                \"isPointer\": \"<boolean>\",\n                \"isConstructedGenericType\": \"<boolean>\",\n                \"isGenericParameter\": \"<boolean>\",\n                \"isGenericTypeParameter\": \"<boolean>\",\n                \"isGenericMethodParameter\": \"<boolean>\",\n                \"isGenericType\": \"<boolean>\",\n                \"isGenericTypeDefinition\": \"<boolean>\",\n                \"isSZArray\": \"<boolean>\",\n                \"isVariableBoundArray\": \"<boolean>\",\n                \"isByRefLike\": \"<boolean>\",\n                \"isFunctionPointer\": \"<boolean>\",\n                \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                \"hasElementType\": \"<boolean>\",\n                \"genericTypeArguments\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ],\n                \"genericParameterPosition\": \"<integer>\",\n                \"genericParameterAttributes\": 8,\n                \"attributes\": 1024,\n                \"isAbstract\": \"<boolean>\",\n                \"isImport\": \"<boolean>\",\n                \"isSealed\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isClass\": \"<boolean>\",\n                \"isNestedAssembly\": \"<boolean>\",\n                \"isNestedFamANDAssem\": \"<boolean>\",\n                \"isNestedFamily\": \"<boolean>\",\n                \"isNestedFamORAssem\": \"<boolean>\",\n                \"isNestedPrivate\": \"<boolean>\",\n                \"isNestedPublic\": \"<boolean>\",\n                \"isNotPublic\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isAutoLayout\": \"<boolean>\",\n                \"isExplicitLayout\": \"<boolean>\",\n                \"isLayoutSequential\": \"<boolean>\",\n                \"isAnsiClass\": \"<boolean>\",\n                \"isAutoClass\": \"<boolean>\",\n                \"isUnicodeClass\": \"<boolean>\",\n                \"isCOMObject\": \"<boolean>\",\n                \"isContextful\": \"<boolean>\",\n                \"isEnum\": \"<boolean>\",\n                \"isMarshalByRef\": \"<boolean>\",\n                \"isPrimitive\": \"<boolean>\",\n                \"isValueType\": \"<boolean>\",\n                \"isSignatureType\": \"<boolean>\",\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"structLayoutAttribute\": {\n                  \"typeId\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"value\": 3\n                },\n                \"typeInitializer\": {\n                  \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                },\n                \"typeHandle\": {\n                  \"value\": {}\n                },\n                \"guid\": \"<uuid>\",\n                \"baseType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"isSerializable\": \"<boolean>\",\n                \"containsGenericParameters\": \"<boolean>\",\n                \"isVisible\": \"<boolean>\",\n                \"genericTypeParameters\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ],\n                \"declaredConstructors\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                  }\n                ],\n                \"declaredEvents\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 1,\n                    \"attributes\": 512,\n                    \"isSpecialName\": \"<boolean>\",\n                    \"addMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 3,\n                      \"methodImplementationFlags\": 3,\n                      \"callingConvention\": 3,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 64,\n                      \"returnParameter\": {\n                        \"attributes\": 0,\n                        \"member\": {\n                          \"memberType\": 16,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"removeMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 2048,\n                      \"methodImplementationFlags\": 32,\n                      \"callingConvention\": 2,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 128,\n                      \"returnParameter\": {\n                        \"attributes\": 0,\n                        \"member\": {\n                          \"memberType\": 32,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"raiseMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 3,\n                      \"methodImplementationFlags\": 1,\n                      \"callingConvention\": 3,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 8,\n                      \"returnParameter\": {\n                        \"attributes\": 0,\n                        \"member\": {\n                          \"memberType\": 128,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"isMulticast\": \"<boolean>\",\n                    \"eventHandlerType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  }\n                ],\n                \"declaredFields\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 8,\n                    \"attributes\": 1024,\n                    \"fieldType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"isInitOnly\": \"<boolean>\",\n                    \"isLiteral\": \"<boolean>\",\n                    \"isNotSerialized\": \"<boolean>\",\n                    \"isPinvokeImpl\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"fieldHandle\": {\n                      \"value\": {}\n                    }\n                  }\n                ],\n                \"declaredMembers\": [\n                  {\n                    \"memberType\": 32,\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\"\n                  }\n                ],\n                \"declaredMethods\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 8192,\n                    \"methodImplementationFlags\": 256,\n                    \"callingConvention\": 64,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 64,\n                    \"returnParameter\": {\n                      \"attributes\": 61440,\n                      \"member\": {\n                        \"memberType\": 2,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  }\n                ],\n                \"declaredNestedTypes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                  }\n                ],\n                \"declaredProperties\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 1,\n                    \"propertyType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"attributes\": 1024,\n                    \"isSpecialName\": \"<boolean>\",\n                    \"canRead\": \"<boolean>\",\n                    \"canWrite\": \"<boolean>\",\n                    \"getMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 53248,\n                      \"methodImplementationFlags\": 512,\n                      \"callingConvention\": 1,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 16,\n                      \"returnParameter\": {\n                        \"attributes\": 4,\n                        \"member\": {\n                          \"memberType\": 32,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    },\n                    \"setMethod\": {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 4,\n                      \"methodImplementationFlags\": 2,\n                      \"callingConvention\": 3,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 1,\n                      \"returnParameter\": {\n                        \"attributes\": 8,\n                        \"member\": {\n                          \"memberType\": 64,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    }\n                  }\n                ],\n                \"implementedInterfaces\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ]\n              }\n            ],\n            \"exportedTypes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              }\n            ],\n            \"codeBase\": \"<string>\",\n            \"entryPoint\": {\n              \"name\": \"<string>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\",\n              \"attributes\": 6,\n              \"methodImplementationFlags\": 32,\n              \"callingConvention\": 3,\n              \"isAbstract\": \"<boolean>\",\n              \"isConstructor\": \"<boolean>\",\n              \"isFinal\": \"<boolean>\",\n              \"isHideBySig\": \"<boolean>\",\n              \"isSpecialName\": \"<boolean>\",\n              \"isStatic\": \"<boolean>\",\n              \"isVirtual\": \"<boolean>\",\n              \"isAssembly\": \"<boolean>\",\n              \"isFamily\": \"<boolean>\",\n              \"isFamilyAndAssembly\": \"<boolean>\",\n              \"isFamilyOrAssembly\": \"<boolean>\",\n              \"isPrivate\": \"<boolean>\",\n              \"isPublic\": \"<boolean>\",\n              \"isConstructedGenericMethod\": \"<boolean>\",\n              \"isGenericMethod\": \"<boolean>\",\n              \"isGenericMethodDefinition\": \"<boolean>\",\n              \"containsGenericParameters\": \"<boolean>\",\n              \"methodHandle\": {\n                \"value\": {}\n              },\n              \"isSecurityCritical\": \"<boolean>\",\n              \"isSecuritySafeCritical\": \"<boolean>\",\n              \"isSecurityTransparent\": \"<boolean>\",\n              \"memberType\": 1,\n              \"returnParameter\": {\n                \"attributes\": 2,\n                \"member\": {\n                  \"memberType\": 16,\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"name\": \"<string>\",\n                \"parameterType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"position\": \"<integer>\",\n                \"isIn\": \"<boolean>\",\n                \"isLcid\": \"<boolean>\",\n                \"isOptional\": \"<boolean>\",\n                \"isOut\": \"<boolean>\",\n                \"isRetval\": \"<boolean>\",\n                \"defaultValue\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"rawDefaultValue\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"hasDefaultValue\": \"<boolean>\",\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"metadataToken\": \"<integer>\"\n              },\n              \"returnType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"returnTypeCustomAttributes\": {}\n            },\n            \"fullName\": \"<string>\",\n            \"imageRuntimeVersion\": \"<string>\",\n            \"isDynamic\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"reflectionOnly\": \"<boolean>\",\n            \"isCollectible\": \"<boolean>\",\n            \"isFullyTrusted\": \"<boolean>\",\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"escapedCodeBase\": \"<string>\",\n            \"manifestModule\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"modules\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              }\n            ],\n            \"globalAssemblyCache\": \"<boolean>\",\n            \"hostContext\": \"<long>\",\n            \"securityRuleSet\": 2\n          },\n          \"fullyQualifiedName\": \"<string>\",\n          \"name\": \"<string>\",\n          \"mdStreamVersion\": \"<integer>\",\n          \"moduleVersionId\": \"<uuid>\",\n          \"scopeName\": \"<string>\",\n          \"moduleHandle\": {\n            \"mdStreamVersion\": \"<integer>\"\n          },\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"metadataToken\": \"<integer>\"\n        },\n        \"isInterface\": \"<boolean>\",\n        \"isNested\": \"<boolean>\",\n        \"declaringType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"declaringMethod\": {\n          \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n        },\n        \"reflectedType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"underlyingSystemType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"isTypeDefinition\": \"<boolean>\",\n        \"isArray\": \"<boolean>\",\n        \"isByRef\": \"<boolean>\",\n        \"isPointer\": \"<boolean>\",\n        \"isConstructedGenericType\": \"<boolean>\",\n        \"isGenericParameter\": \"<boolean>\",\n        \"isGenericTypeParameter\": \"<boolean>\",\n        \"isGenericMethodParameter\": \"<boolean>\",\n        \"isGenericType\": \"<boolean>\",\n        \"isGenericTypeDefinition\": \"<boolean>\",\n        \"isSZArray\": \"<boolean>\",\n        \"isVariableBoundArray\": \"<boolean>\",\n        \"isByRefLike\": \"<boolean>\",\n        \"isFunctionPointer\": \"<boolean>\",\n        \"isUnmanagedFunctionPointer\": \"<boolean>\",\n        \"hasElementType\": \"<boolean>\",\n        \"genericTypeArguments\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          }\n        ],\n        \"genericParameterPosition\": \"<integer>\",\n        \"genericParameterAttributes\": 3,\n        \"attributes\": 1024,\n        \"isAbstract\": \"<boolean>\",\n        \"isImport\": \"<boolean>\",\n        \"isSealed\": \"<boolean>\",\n        \"isSpecialName\": \"<boolean>\",\n        \"isClass\": \"<boolean>\",\n        \"isNestedAssembly\": \"<boolean>\",\n        \"isNestedFamANDAssem\": \"<boolean>\",\n        \"isNestedFamily\": \"<boolean>\",\n        \"isNestedFamORAssem\": \"<boolean>\",\n        \"isNestedPrivate\": \"<boolean>\",\n        \"isNestedPublic\": \"<boolean>\",\n        \"isNotPublic\": \"<boolean>\",\n        \"isPublic\": \"<boolean>\",\n        \"isAutoLayout\": \"<boolean>\",\n        \"isExplicitLayout\": \"<boolean>\",\n        \"isLayoutSequential\": \"<boolean>\",\n        \"isAnsiClass\": \"<boolean>\",\n        \"isAutoClass\": \"<boolean>\",\n        \"isUnicodeClass\": \"<boolean>\",\n        \"isCOMObject\": \"<boolean>\",\n        \"isContextful\": \"<boolean>\",\n        \"isEnum\": \"<boolean>\",\n        \"isMarshalByRef\": \"<boolean>\",\n        \"isPrimitive\": \"<boolean>\",\n        \"isValueType\": \"<boolean>\",\n        \"isSignatureType\": \"<boolean>\",\n        \"isSecurityCritical\": \"<boolean>\",\n        \"isSecuritySafeCritical\": \"<boolean>\",\n        \"isSecurityTransparent\": \"<boolean>\",\n        \"structLayoutAttribute\": {\n          \"typeId\": {\n            \"nullable\": true,\n            \"readOnly\": true\n          },\n          \"value\": 0\n        },\n        \"typeInitializer\": {\n          \"name\": \"<string>\",\n          \"declaringType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"reflectedType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"module\": {\n            \"assembly\": {\n              \"definedTypes\": [\n                {\n                  \"name\": \"<string>\",\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 32,\n                  \"namespace\": \"<string>\",\n                  \"assemblyQualifiedName\": \"<string>\",\n                  \"fullName\": \"<string>\",\n                  \"assembly\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"isInterface\": \"<boolean>\",\n                  \"isNested\": \"<boolean>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"declaringMethod\": {\n                    \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"underlyingSystemType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"isTypeDefinition\": \"<boolean>\",\n                  \"isArray\": \"<boolean>\",\n                  \"isByRef\": \"<boolean>\",\n                  \"isPointer\": \"<boolean>\",\n                  \"isConstructedGenericType\": \"<boolean>\",\n                  \"isGenericParameter\": \"<boolean>\",\n                  \"isGenericTypeParameter\": \"<boolean>\",\n                  \"isGenericMethodParameter\": \"<boolean>\",\n                  \"isGenericType\": \"<boolean>\",\n                  \"isGenericTypeDefinition\": \"<boolean>\",\n                  \"isSZArray\": \"<boolean>\",\n                  \"isVariableBoundArray\": \"<boolean>\",\n                  \"isByRefLike\": \"<boolean>\",\n                  \"isFunctionPointer\": \"<boolean>\",\n                  \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                  \"hasElementType\": \"<boolean>\",\n                  \"genericTypeArguments\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  ],\n                  \"genericParameterPosition\": \"<integer>\",\n                  \"genericParameterAttributes\": 32,\n                  \"attributes\": 5,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isImport\": \"<boolean>\",\n                  \"isSealed\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isClass\": \"<boolean>\",\n                  \"isNestedAssembly\": \"<boolean>\",\n                  \"isNestedFamANDAssem\": \"<boolean>\",\n                  \"isNestedFamily\": \"<boolean>\",\n                  \"isNestedFamORAssem\": \"<boolean>\",\n                  \"isNestedPrivate\": \"<boolean>\",\n                  \"isNestedPublic\": \"<boolean>\",\n                  \"isNotPublic\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isAutoLayout\": \"<boolean>\",\n                  \"isExplicitLayout\": \"<boolean>\",\n                  \"isLayoutSequential\": \"<boolean>\",\n                  \"isAnsiClass\": \"<boolean>\",\n                  \"isAutoClass\": \"<boolean>\",\n                  \"isUnicodeClass\": \"<boolean>\",\n                  \"isCOMObject\": \"<boolean>\",\n                  \"isContextful\": \"<boolean>\",\n                  \"isEnum\": \"<boolean>\",\n                  \"isMarshalByRef\": \"<boolean>\",\n                  \"isPrimitive\": \"<boolean>\",\n                  \"isValueType\": \"<boolean>\",\n                  \"isSignatureType\": \"<boolean>\",\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"structLayoutAttribute\": {\n                    \"typeId\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"value\": 0\n                  },\n                  \"typeInitializer\": {\n                    \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                  },\n                  \"typeHandle\": {\n                    \"value\": {}\n                  },\n                  \"guid\": \"<uuid>\",\n                  \"baseType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"isSerializable\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"isVisible\": \"<boolean>\",\n                  \"genericTypeParameters\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  ],\n                  \"declaredConstructors\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                    }\n                  ],\n                  \"declaredEvents\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"memberType\": 128,\n                      \"attributes\": 0,\n                      \"isSpecialName\": \"<boolean>\",\n                      \"addMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 16384,\n                        \"methodImplementationFlags\": 512,\n                        \"callingConvention\": 3,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 64,\n                        \"returnParameter\": {\n                          \"attributes\": 32768,\n                          \"member\": {\n                            \"memberType\": 64,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"removeMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 2,\n                        \"methodImplementationFlags\": 4096,\n                        \"callingConvention\": 64,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 2,\n                        \"returnParameter\": {\n                          \"attributes\": 4096,\n                          \"member\": {\n                            \"memberType\": 16,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"raiseMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 5,\n                        \"methodImplementationFlags\": 256,\n                        \"callingConvention\": 3,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 16,\n                        \"returnParameter\": {\n                          \"attributes\": 4,\n                          \"member\": {\n                            \"memberType\": 64,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"isMulticast\": \"<boolean>\",\n                      \"eventHandlerType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    }\n                  ],\n                  \"declaredFields\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"memberType\": 32,\n                      \"attributes\": 4,\n                      \"fieldType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"isInitOnly\": \"<boolean>\",\n                      \"isLiteral\": \"<boolean>\",\n                      \"isNotSerialized\": \"<boolean>\",\n                      \"isPinvokeImpl\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"fieldHandle\": {\n                        \"value\": {}\n                      }\n                    }\n                  ],\n                  \"declaredMembers\": [\n                    {\n                      \"memberType\": 1,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    }\n                  ],\n                  \"declaredMethods\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"attributes\": 256,\n                      \"methodImplementationFlags\": 32,\n                      \"callingConvention\": 64,\n                      \"isAbstract\": \"<boolean>\",\n                      \"isConstructor\": \"<boolean>\",\n                      \"isFinal\": \"<boolean>\",\n                      \"isHideBySig\": \"<boolean>\",\n                      \"isSpecialName\": \"<boolean>\",\n                      \"isStatic\": \"<boolean>\",\n                      \"isVirtual\": \"<boolean>\",\n                      \"isAssembly\": \"<boolean>\",\n                      \"isFamily\": \"<boolean>\",\n                      \"isFamilyAndAssembly\": \"<boolean>\",\n                      \"isFamilyOrAssembly\": \"<boolean>\",\n                      \"isPrivate\": \"<boolean>\",\n                      \"isPublic\": \"<boolean>\",\n                      \"isConstructedGenericMethod\": \"<boolean>\",\n                      \"isGenericMethod\": \"<boolean>\",\n                      \"isGenericMethodDefinition\": \"<boolean>\",\n                      \"containsGenericParameters\": \"<boolean>\",\n                      \"methodHandle\": {\n                        \"value\": {}\n                      },\n                      \"isSecurityCritical\": \"<boolean>\",\n                      \"isSecuritySafeCritical\": \"<boolean>\",\n                      \"isSecurityTransparent\": \"<boolean>\",\n                      \"memberType\": 128,\n                      \"returnParameter\": {\n                        \"attributes\": 1,\n                        \"member\": {\n                          \"memberType\": 191,\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"name\": \"<string>\",\n                        \"parameterType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"position\": \"<integer>\",\n                        \"isIn\": \"<boolean>\",\n                        \"isLcid\": \"<boolean>\",\n                        \"isOptional\": \"<boolean>\",\n                        \"isOut\": \"<boolean>\",\n                        \"isRetval\": \"<boolean>\",\n                        \"defaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"rawDefaultValue\": {\n                          \"nullable\": true,\n                          \"readOnly\": true\n                        },\n                        \"hasDefaultValue\": \"<boolean>\",\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"returnType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"returnTypeCustomAttributes\": {}\n                    }\n                  ],\n                  \"declaredNestedTypes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                    }\n                  ],\n                  \"declaredProperties\": [\n                    {\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\",\n                      \"memberType\": 191,\n                      \"propertyType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"attributes\": 16384,\n                      \"isSpecialName\": \"<boolean>\",\n                      \"canRead\": \"<boolean>\",\n                      \"canWrite\": \"<boolean>\",\n                      \"getMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 4096,\n                        \"methodImplementationFlags\": 8,\n                        \"callingConvention\": 3,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 1,\n                        \"returnParameter\": {\n                          \"attributes\": 1,\n                          \"member\": {\n                            \"memberType\": 8,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      },\n                      \"setMethod\": {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 512,\n                        \"methodImplementationFlags\": 1,\n                        \"callingConvention\": 2,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 128,\n                        \"returnParameter\": {\n                          \"attributes\": 16,\n                          \"member\": {\n                            \"memberType\": 32,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      }\n                    }\n                  ],\n                  \"implementedInterfaces\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    }\n                  ]\n                }\n              ],\n              \"exportedTypes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"codeBase\": \"<string>\",\n              \"entryPoint\": {\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\",\n                \"attributes\": 1,\n                \"methodImplementationFlags\": 16,\n                \"callingConvention\": 3,\n                \"isAbstract\": \"<boolean>\",\n                \"isConstructor\": \"<boolean>\",\n                \"isFinal\": \"<boolean>\",\n                \"isHideBySig\": \"<boolean>\",\n                \"isSpecialName\": \"<boolean>\",\n                \"isStatic\": \"<boolean>\",\n                \"isVirtual\": \"<boolean>\",\n                \"isAssembly\": \"<boolean>\",\n                \"isFamily\": \"<boolean>\",\n                \"isFamilyAndAssembly\": \"<boolean>\",\n                \"isFamilyOrAssembly\": \"<boolean>\",\n                \"isPrivate\": \"<boolean>\",\n                \"isPublic\": \"<boolean>\",\n                \"isConstructedGenericMethod\": \"<boolean>\",\n                \"isGenericMethod\": \"<boolean>\",\n                \"isGenericMethodDefinition\": \"<boolean>\",\n                \"containsGenericParameters\": \"<boolean>\",\n                \"methodHandle\": {\n                  \"value\": {}\n                },\n                \"isSecurityCritical\": \"<boolean>\",\n                \"isSecuritySafeCritical\": \"<boolean>\",\n                \"isSecurityTransparent\": \"<boolean>\",\n                \"memberType\": 2,\n                \"returnParameter\": {\n                  \"attributes\": 32768,\n                  \"member\": {\n                    \"memberType\": 8,\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"name\": \"<string>\",\n                  \"parameterType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"position\": \"<integer>\",\n                  \"isIn\": \"<boolean>\",\n                  \"isLcid\": \"<boolean>\",\n                  \"isOptional\": \"<boolean>\",\n                  \"isOut\": \"<boolean>\",\n                  \"isRetval\": \"<boolean>\",\n                  \"defaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"rawDefaultValue\": {\n                    \"nullable\": true,\n                    \"readOnly\": true\n                  },\n                  \"hasDefaultValue\": \"<boolean>\",\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"metadataToken\": \"<integer>\"\n                },\n                \"returnType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"returnTypeCustomAttributes\": {}\n              },\n              \"fullName\": \"<string>\",\n              \"imageRuntimeVersion\": \"<string>\",\n              \"isDynamic\": \"<boolean>\",\n              \"location\": \"<string>\",\n              \"reflectionOnly\": \"<boolean>\",\n              \"isCollectible\": \"<boolean>\",\n              \"isFullyTrusted\": \"<boolean>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"escapedCodeBase\": \"<string>\",\n              \"manifestModule\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"modules\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                }\n              ],\n              \"globalAssemblyCache\": \"<boolean>\",\n              \"hostContext\": \"<long>\",\n              \"securityRuleSet\": 2\n            },\n            \"fullyQualifiedName\": \"<string>\",\n            \"name\": \"<string>\",\n            \"mdStreamVersion\": \"<integer>\",\n            \"moduleVersionId\": \"<uuid>\",\n            \"scopeName\": \"<string>\",\n            \"moduleHandle\": {\n              \"mdStreamVersion\": \"<integer>\"\n            },\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"metadataToken\": \"<integer>\"\n          },\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"isCollectible\": \"<boolean>\",\n          \"metadataToken\": \"<integer>\",\n          \"attributes\": 16,\n          \"methodImplementationFlags\": 64,\n          \"callingConvention\": 1,\n          \"isAbstract\": \"<boolean>\",\n          \"isConstructor\": \"<boolean>\",\n          \"isFinal\": \"<boolean>\",\n          \"isHideBySig\": \"<boolean>\",\n          \"isSpecialName\": \"<boolean>\",\n          \"isStatic\": \"<boolean>\",\n          \"isVirtual\": \"<boolean>\",\n          \"isAssembly\": \"<boolean>\",\n          \"isFamily\": \"<boolean>\",\n          \"isFamilyAndAssembly\": \"<boolean>\",\n          \"isFamilyOrAssembly\": \"<boolean>\",\n          \"isPrivate\": \"<boolean>\",\n          \"isPublic\": \"<boolean>\",\n          \"isConstructedGenericMethod\": \"<boolean>\",\n          \"isGenericMethod\": \"<boolean>\",\n          \"isGenericMethodDefinition\": \"<boolean>\",\n          \"containsGenericParameters\": \"<boolean>\",\n          \"methodHandle\": {\n            \"value\": {}\n          },\n          \"isSecurityCritical\": \"<boolean>\",\n          \"isSecuritySafeCritical\": \"<boolean>\",\n          \"isSecurityTransparent\": \"<boolean>\",\n          \"memberType\": 128\n        },\n        \"typeHandle\": {\n          \"value\": {}\n        },\n        \"guid\": \"<uuid>\",\n        \"baseType\": {\n          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n        },\n        \"isSerializable\": \"<boolean>\",\n        \"containsGenericParameters\": \"<boolean>\",\n        \"isVisible\": \"<boolean>\"\n      },\n      \"module\": {\n        \"assembly\": {\n          \"definedTypes\": [\n            {\n              \"name\": \"<string>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"isCollectible\": \"<boolean>\",\n              \"metadataToken\": \"<integer>\",\n              \"memberType\": 16,\n              \"namespace\": \"<string>\",\n              \"assemblyQualifiedName\": \"<string>\",\n              \"fullName\": \"<string>\",\n              \"assembly\": {\n                \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n              },\n              \"module\": {\n                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n              },\n              \"isInterface\": \"<boolean>\",\n              \"isNested\": \"<boolean>\",\n              \"declaringType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"declaringMethod\": {\n                \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n              },\n              \"reflectedType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"underlyingSystemType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"isTypeDefinition\": \"<boolean>\",\n              \"isArray\": \"<boolean>\",\n              \"isByRef\": \"<boolean>\",\n              \"isPointer\": \"<boolean>\",\n              \"isConstructedGenericType\": \"<boolean>\",\n              \"isGenericParameter\": \"<boolean>\",\n              \"isGenericTypeParameter\": \"<boolean>\",\n              \"isGenericMethodParameter\": \"<boolean>\",\n              \"isGenericType\": \"<boolean>\",\n              \"isGenericTypeDefinition\": \"<boolean>\",\n              \"isSZArray\": \"<boolean>\",\n              \"isVariableBoundArray\": \"<boolean>\",\n              \"isByRefLike\": \"<boolean>\",\n              \"isFunctionPointer\": \"<boolean>\",\n              \"isUnmanagedFunctionPointer\": \"<boolean>\",\n              \"hasElementType\": \"<boolean>\",\n              \"genericTypeArguments\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"genericParameterPosition\": \"<integer>\",\n              \"genericParameterAttributes\": 0,\n              \"attributes\": 2,\n              \"isAbstract\": \"<boolean>\",\n              \"isImport\": \"<boolean>\",\n              \"isSealed\": \"<boolean>\",\n              \"isSpecialName\": \"<boolean>\",\n              \"isClass\": \"<boolean>\",\n              \"isNestedAssembly\": \"<boolean>\",\n              \"isNestedFamANDAssem\": \"<boolean>\",\n              \"isNestedFamily\": \"<boolean>\",\n              \"isNestedFamORAssem\": \"<boolean>\",\n              \"isNestedPrivate\": \"<boolean>\",\n              \"isNestedPublic\": \"<boolean>\",\n              \"isNotPublic\": \"<boolean>\",\n              \"isPublic\": \"<boolean>\",\n              \"isAutoLayout\": \"<boolean>\",\n              \"isExplicitLayout\": \"<boolean>\",\n              \"isLayoutSequential\": \"<boolean>\",\n              \"isAnsiClass\": \"<boolean>\",\n              \"isAutoClass\": \"<boolean>\",\n              \"isUnicodeClass\": \"<boolean>\",\n              \"isCOMObject\": \"<boolean>\",\n              \"isContextful\": \"<boolean>\",\n              \"isEnum\": \"<boolean>\",\n              \"isMarshalByRef\": \"<boolean>\",\n              \"isPrimitive\": \"<boolean>\",\n              \"isValueType\": \"<boolean>\",\n              \"isSignatureType\": \"<boolean>\",\n              \"isSecurityCritical\": \"<boolean>\",\n              \"isSecuritySafeCritical\": \"<boolean>\",\n              \"isSecurityTransparent\": \"<boolean>\",\n              \"structLayoutAttribute\": {\n                \"typeId\": {\n                  \"nullable\": true,\n                  \"readOnly\": true\n                },\n                \"value\": 2\n              },\n              \"typeInitializer\": {\n                \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n              },\n              \"typeHandle\": {\n                \"value\": {}\n              },\n              \"guid\": \"<uuid>\",\n              \"baseType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"isSerializable\": \"<boolean>\",\n              \"containsGenericParameters\": \"<boolean>\",\n              \"isVisible\": \"<boolean>\",\n              \"genericTypeParameters\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ],\n              \"declaredConstructors\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                }\n              ],\n              \"declaredEvents\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 64,\n                  \"attributes\": 1024,\n                  \"isSpecialName\": \"<boolean>\",\n                  \"addMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 8192,\n                    \"methodImplementationFlags\": 4,\n                    \"callingConvention\": 3,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 128,\n                    \"returnParameter\": {\n                      \"attributes\": 4,\n                      \"member\": {\n                        \"memberType\": 2,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"removeMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 16384,\n                    \"methodImplementationFlags\": 2,\n                    \"callingConvention\": 32,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 16,\n                    \"returnParameter\": {\n                      \"attributes\": 8,\n                      \"member\": {\n                        \"memberType\": 64,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"raiseMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 1024,\n                    \"methodImplementationFlags\": 8,\n                    \"callingConvention\": 32,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 64,\n                    \"returnParameter\": {\n                      \"attributes\": 4096,\n                      \"member\": {\n                        \"memberType\": 1,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"isMulticast\": \"<boolean>\",\n                  \"eventHandlerType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                }\n              ],\n              \"declaredFields\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 128,\n                  \"attributes\": 64,\n                  \"fieldType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"isInitOnly\": \"<boolean>\",\n                  \"isLiteral\": \"<boolean>\",\n                  \"isNotSerialized\": \"<boolean>\",\n                  \"isPinvokeImpl\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"fieldHandle\": {\n                    \"value\": {}\n                  }\n                }\n              ],\n              \"declaredMembers\": [\n                {\n                  \"memberType\": 191,\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\"\n                }\n              ],\n              \"declaredMethods\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 128,\n                  \"methodImplementationFlags\": 4096,\n                  \"callingConvention\": 32,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 191,\n                  \"returnParameter\": {\n                    \"attributes\": 8192,\n                    \"member\": {\n                      \"memberType\": 4,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                }\n              ],\n              \"declaredNestedTypes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                }\n              ],\n              \"declaredProperties\": [\n                {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"memberType\": 1,\n                  \"propertyType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"attributes\": 8192,\n                  \"isSpecialName\": \"<boolean>\",\n                  \"canRead\": \"<boolean>\",\n                  \"canWrite\": \"<boolean>\",\n                  \"getMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 3,\n                    \"methodImplementationFlags\": 32,\n                    \"callingConvention\": 1,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 64,\n                    \"returnParameter\": {\n                      \"attributes\": 8192,\n                      \"member\": {\n                        \"memberType\": 4,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  },\n                  \"setMethod\": {\n                    \"name\": \"<string>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"attributes\": 16,\n                    \"methodImplementationFlags\": 1,\n                    \"callingConvention\": 2,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isConstructor\": \"<boolean>\",\n                    \"isFinal\": \"<boolean>\",\n                    \"isHideBySig\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isStatic\": \"<boolean>\",\n                    \"isVirtual\": \"<boolean>\",\n                    \"isAssembly\": \"<boolean>\",\n                    \"isFamily\": \"<boolean>\",\n                    \"isFamilyAndAssembly\": \"<boolean>\",\n                    \"isFamilyOrAssembly\": \"<boolean>\",\n                    \"isPrivate\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isConstructedGenericMethod\": \"<boolean>\",\n                    \"isGenericMethod\": \"<boolean>\",\n                    \"isGenericMethodDefinition\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"methodHandle\": {\n                      \"value\": {}\n                    },\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"memberType\": 2,\n                    \"returnParameter\": {\n                      \"attributes\": 4,\n                      \"member\": {\n                        \"memberType\": 16,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      },\n                      \"name\": \"<string>\",\n                      \"parameterType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"position\": \"<integer>\",\n                      \"isIn\": \"<boolean>\",\n                      \"isLcid\": \"<boolean>\",\n                      \"isOptional\": \"<boolean>\",\n                      \"isOut\": \"<boolean>\",\n                      \"isRetval\": \"<boolean>\",\n                      \"defaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"rawDefaultValue\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"hasDefaultValue\": \"<boolean>\",\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"returnType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"returnTypeCustomAttributes\": {}\n                  }\n                }\n              ],\n              \"implementedInterfaces\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                }\n              ]\n            }\n          ],\n          \"exportedTypes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            }\n          ],\n          \"codeBase\": \"<string>\",\n          \"entryPoint\": {\n            \"name\": \"<string>\",\n            \"declaringType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"reflectedType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"module\": {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            },\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"isCollectible\": \"<boolean>\",\n            \"metadataToken\": \"<integer>\",\n            \"attributes\": 256,\n            \"methodImplementationFlags\": 3,\n            \"callingConvention\": 1,\n            \"isAbstract\": \"<boolean>\",\n            \"isConstructor\": \"<boolean>\",\n            \"isFinal\": \"<boolean>\",\n            \"isHideBySig\": \"<boolean>\",\n            \"isSpecialName\": \"<boolean>\",\n            \"isStatic\": \"<boolean>\",\n            \"isVirtual\": \"<boolean>\",\n            \"isAssembly\": \"<boolean>\",\n            \"isFamily\": \"<boolean>\",\n            \"isFamilyAndAssembly\": \"<boolean>\",\n            \"isFamilyOrAssembly\": \"<boolean>\",\n            \"isPrivate\": \"<boolean>\",\n            \"isPublic\": \"<boolean>\",\n            \"isConstructedGenericMethod\": \"<boolean>\",\n            \"isGenericMethod\": \"<boolean>\",\n            \"isGenericMethodDefinition\": \"<boolean>\",\n            \"containsGenericParameters\": \"<boolean>\",\n            \"methodHandle\": {\n              \"value\": {}\n            },\n            \"isSecurityCritical\": \"<boolean>\",\n            \"isSecuritySafeCritical\": \"<boolean>\",\n            \"isSecurityTransparent\": \"<boolean>\",\n            \"memberType\": 128,\n            \"returnParameter\": {\n              \"attributes\": 16,\n              \"member\": {\n                \"memberType\": 8,\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\"\n              },\n              \"name\": \"<string>\",\n              \"parameterType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"position\": \"<integer>\",\n              \"isIn\": \"<boolean>\",\n              \"isLcid\": \"<boolean>\",\n              \"isOptional\": \"<boolean>\",\n              \"isOut\": \"<boolean>\",\n              \"isRetval\": \"<boolean>\",\n              \"defaultValue\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"rawDefaultValue\": {\n                \"nullable\": true,\n                \"readOnly\": true\n              },\n              \"hasDefaultValue\": \"<boolean>\",\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"metadataToken\": \"<integer>\"\n            },\n            \"returnType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"returnTypeCustomAttributes\": {}\n          },\n          \"fullName\": \"<string>\",\n          \"imageRuntimeVersion\": \"<string>\",\n          \"isDynamic\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"reflectionOnly\": \"<boolean>\",\n          \"isCollectible\": \"<boolean>\",\n          \"isFullyTrusted\": \"<boolean>\",\n          \"customAttributes\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n            }\n          ],\n          \"escapedCodeBase\": \"<string>\",\n          \"manifestModule\": {\n            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n          },\n          \"modules\": [\n            {\n              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n            }\n          ],\n          \"globalAssemblyCache\": \"<boolean>\",\n          \"hostContext\": \"<long>\",\n          \"securityRuleSet\": 1\n        },\n        \"fullyQualifiedName\": \"<string>\",\n        \"name\": \"<string>\",\n        \"mdStreamVersion\": \"<integer>\",\n        \"moduleVersionId\": \"<uuid>\",\n        \"scopeName\": \"<string>\",\n        \"moduleHandle\": {\n          \"mdStreamVersion\": \"<integer>\"\n        },\n        \"customAttributes\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n          }\n        ],\n        \"metadataToken\": \"<integer>\"\n      },\n      \"customAttributes\": [\n        {\n          \"attributeType\": {\n            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n          },\n          \"constructor\": {\n            \"name\": \"<string>\",\n            \"declaringType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"reflectedType\": {\n              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n            },\n            \"module\": {\n              \"assembly\": {\n                \"definedTypes\": [\n                  {\n                    \"name\": \"<string>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"isCollectible\": \"<boolean>\",\n                    \"metadataToken\": \"<integer>\",\n                    \"memberType\": 8,\n                    \"namespace\": \"<string>\",\n                    \"assemblyQualifiedName\": \"<string>\",\n                    \"fullName\": \"<string>\",\n                    \"assembly\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Assembly detected>\"\n                    },\n                    \"module\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                    },\n                    \"isInterface\": \"<boolean>\",\n                    \"isNested\": \"<boolean>\",\n                    \"declaringType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"declaringMethod\": {\n                      \"value\": \"<Circular reference to #/components/schemas/MethodBase detected>\"\n                    },\n                    \"reflectedType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"underlyingSystemType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"isTypeDefinition\": \"<boolean>\",\n                    \"isArray\": \"<boolean>\",\n                    \"isByRef\": \"<boolean>\",\n                    \"isPointer\": \"<boolean>\",\n                    \"isConstructedGenericType\": \"<boolean>\",\n                    \"isGenericParameter\": \"<boolean>\",\n                    \"isGenericTypeParameter\": \"<boolean>\",\n                    \"isGenericMethodParameter\": \"<boolean>\",\n                    \"isGenericType\": \"<boolean>\",\n                    \"isGenericTypeDefinition\": \"<boolean>\",\n                    \"isSZArray\": \"<boolean>\",\n                    \"isVariableBoundArray\": \"<boolean>\",\n                    \"isByRefLike\": \"<boolean>\",\n                    \"isFunctionPointer\": \"<boolean>\",\n                    \"isUnmanagedFunctionPointer\": \"<boolean>\",\n                    \"hasElementType\": \"<boolean>\",\n                    \"genericTypeArguments\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    ],\n                    \"genericParameterPosition\": \"<integer>\",\n                    \"genericParameterAttributes\": 2,\n                    \"attributes\": 2,\n                    \"isAbstract\": \"<boolean>\",\n                    \"isImport\": \"<boolean>\",\n                    \"isSealed\": \"<boolean>\",\n                    \"isSpecialName\": \"<boolean>\",\n                    \"isClass\": \"<boolean>\",\n                    \"isNestedAssembly\": \"<boolean>\",\n                    \"isNestedFamANDAssem\": \"<boolean>\",\n                    \"isNestedFamily\": \"<boolean>\",\n                    \"isNestedFamORAssem\": \"<boolean>\",\n                    \"isNestedPrivate\": \"<boolean>\",\n                    \"isNestedPublic\": \"<boolean>\",\n                    \"isNotPublic\": \"<boolean>\",\n                    \"isPublic\": \"<boolean>\",\n                    \"isAutoLayout\": \"<boolean>\",\n                    \"isExplicitLayout\": \"<boolean>\",\n                    \"isLayoutSequential\": \"<boolean>\",\n                    \"isAnsiClass\": \"<boolean>\",\n                    \"isAutoClass\": \"<boolean>\",\n                    \"isUnicodeClass\": \"<boolean>\",\n                    \"isCOMObject\": \"<boolean>\",\n                    \"isContextful\": \"<boolean>\",\n                    \"isEnum\": \"<boolean>\",\n                    \"isMarshalByRef\": \"<boolean>\",\n                    \"isPrimitive\": \"<boolean>\",\n                    \"isValueType\": \"<boolean>\",\n                    \"isSignatureType\": \"<boolean>\",\n                    \"isSecurityCritical\": \"<boolean>\",\n                    \"isSecuritySafeCritical\": \"<boolean>\",\n                    \"isSecurityTransparent\": \"<boolean>\",\n                    \"structLayoutAttribute\": {\n                      \"typeId\": {\n                        \"nullable\": true,\n                        \"readOnly\": true\n                      },\n                      \"value\": 3\n                    },\n                    \"typeInitializer\": {\n                      \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                    },\n                    \"typeHandle\": {\n                      \"value\": {}\n                    },\n                    \"guid\": \"<uuid>\",\n                    \"baseType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"isSerializable\": \"<boolean>\",\n                    \"containsGenericParameters\": \"<boolean>\",\n                    \"isVisible\": \"<boolean>\",\n                    \"genericTypeParameters\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    ],\n                    \"declaredConstructors\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/ConstructorInfo detected>\"\n                      }\n                    ],\n                    \"declaredEvents\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"memberType\": 128,\n                        \"attributes\": 1024,\n                        \"isSpecialName\": \"<boolean>\",\n                        \"addMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 128,\n                          \"methodImplementationFlags\": 3,\n                          \"callingConvention\": 1,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 2,\n                          \"returnParameter\": {\n                            \"attributes\": 4,\n                            \"member\": {\n                              \"memberType\": 32,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"removeMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 3,\n                          \"methodImplementationFlags\": 4096,\n                          \"callingConvention\": 3,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 191,\n                          \"returnParameter\": {\n                            \"attributes\": 0,\n                            \"member\": {\n                              \"memberType\": 128,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"raiseMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 1,\n                          \"methodImplementationFlags\": 0,\n                          \"callingConvention\": 32,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 32,\n                          \"returnParameter\": {\n                            \"attributes\": 8,\n                            \"member\": {\n                              \"memberType\": 8,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"isMulticast\": \"<boolean>\",\n                        \"eventHandlerType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        }\n                      }\n                    ],\n                    \"declaredFields\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"memberType\": 16,\n                        \"attributes\": 512,\n                        \"fieldType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"isInitOnly\": \"<boolean>\",\n                        \"isLiteral\": \"<boolean>\",\n                        \"isNotSerialized\": \"<boolean>\",\n                        \"isPinvokeImpl\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"fieldHandle\": {\n                          \"value\": {}\n                        }\n                      }\n                    ],\n                    \"declaredMembers\": [\n                      {\n                        \"memberType\": 32,\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\"\n                      }\n                    ],\n                    \"declaredMethods\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"attributes\": 1,\n                        \"methodImplementationFlags\": 4096,\n                        \"callingConvention\": 3,\n                        \"isAbstract\": \"<boolean>\",\n                        \"isConstructor\": \"<boolean>\",\n                        \"isFinal\": \"<boolean>\",\n                        \"isHideBySig\": \"<boolean>\",\n                        \"isSpecialName\": \"<boolean>\",\n                        \"isStatic\": \"<boolean>\",\n                        \"isVirtual\": \"<boolean>\",\n                        \"isAssembly\": \"<boolean>\",\n                        \"isFamily\": \"<boolean>\",\n                        \"isFamilyAndAssembly\": \"<boolean>\",\n                        \"isFamilyOrAssembly\": \"<boolean>\",\n                        \"isPrivate\": \"<boolean>\",\n                        \"isPublic\": \"<boolean>\",\n                        \"isConstructedGenericMethod\": \"<boolean>\",\n                        \"isGenericMethod\": \"<boolean>\",\n                        \"isGenericMethodDefinition\": \"<boolean>\",\n                        \"containsGenericParameters\": \"<boolean>\",\n                        \"methodHandle\": {\n                          \"value\": {}\n                        },\n                        \"isSecurityCritical\": \"<boolean>\",\n                        \"isSecuritySafeCritical\": \"<boolean>\",\n                        \"isSecurityTransparent\": \"<boolean>\",\n                        \"memberType\": 16,\n                        \"returnParameter\": {\n                          \"attributes\": 8,\n                          \"member\": {\n                            \"memberType\": 191,\n                            \"name\": \"<string>\",\n                            \"declaringType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"reflectedType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"module\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                            },\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"isCollectible\": \"<boolean>\",\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"name\": \"<string>\",\n                          \"parameterType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"position\": \"<integer>\",\n                          \"isIn\": \"<boolean>\",\n                          \"isLcid\": \"<boolean>\",\n                          \"isOptional\": \"<boolean>\",\n                          \"isOut\": \"<boolean>\",\n                          \"isRetval\": \"<boolean>\",\n                          \"defaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"rawDefaultValue\": {\n                            \"nullable\": true,\n                            \"readOnly\": true\n                          },\n                          \"hasDefaultValue\": \"<boolean>\",\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"metadataToken\": \"<integer>\"\n                        },\n                        \"returnType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"returnTypeCustomAttributes\": {}\n                      }\n                    ],\n                    \"declaredNestedTypes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/TypeInfo detected>\"\n                      }\n                    ],\n                    \"declaredProperties\": [\n                      {\n                        \"name\": \"<string>\",\n                        \"declaringType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"reflectedType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"module\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                        },\n                        \"customAttributes\": [\n                          {\n                            \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                          }\n                        ],\n                        \"isCollectible\": \"<boolean>\",\n                        \"metadataToken\": \"<integer>\",\n                        \"memberType\": 16,\n                        \"propertyType\": {\n                          \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                        },\n                        \"attributes\": 1024,\n                        \"isSpecialName\": \"<boolean>\",\n                        \"canRead\": \"<boolean>\",\n                        \"canWrite\": \"<boolean>\",\n                        \"getMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 53248,\n                          \"methodImplementationFlags\": 8,\n                          \"callingConvention\": 3,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 8,\n                          \"returnParameter\": {\n                            \"attributes\": 16,\n                            \"member\": {\n                              \"memberType\": 16,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        },\n                        \"setMethod\": {\n                          \"name\": \"<string>\",\n                          \"declaringType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"reflectedType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"module\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                          },\n                          \"customAttributes\": [\n                            {\n                              \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                            }\n                          ],\n                          \"isCollectible\": \"<boolean>\",\n                          \"metadataToken\": \"<integer>\",\n                          \"attributes\": 4096,\n                          \"methodImplementationFlags\": 4096,\n                          \"callingConvention\": 64,\n                          \"isAbstract\": \"<boolean>\",\n                          \"isConstructor\": \"<boolean>\",\n                          \"isFinal\": \"<boolean>\",\n                          \"isHideBySig\": \"<boolean>\",\n                          \"isSpecialName\": \"<boolean>\",\n                          \"isStatic\": \"<boolean>\",\n                          \"isVirtual\": \"<boolean>\",\n                          \"isAssembly\": \"<boolean>\",\n                          \"isFamily\": \"<boolean>\",\n                          \"isFamilyAndAssembly\": \"<boolean>\",\n                          \"isFamilyOrAssembly\": \"<boolean>\",\n                          \"isPrivate\": \"<boolean>\",\n                          \"isPublic\": \"<boolean>\",\n                          \"isConstructedGenericMethod\": \"<boolean>\",\n                          \"isGenericMethod\": \"<boolean>\",\n                          \"isGenericMethodDefinition\": \"<boolean>\",\n                          \"containsGenericParameters\": \"<boolean>\",\n                          \"methodHandle\": {\n                            \"value\": {}\n                          },\n                          \"isSecurityCritical\": \"<boolean>\",\n                          \"isSecuritySafeCritical\": \"<boolean>\",\n                          \"isSecurityTransparent\": \"<boolean>\",\n                          \"memberType\": 32,\n                          \"returnParameter\": {\n                            \"attributes\": 4096,\n                            \"member\": {\n                              \"memberType\": 32,\n                              \"name\": \"<string>\",\n                              \"declaringType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"reflectedType\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                              },\n                              \"module\": {\n                                \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                              },\n                              \"customAttributes\": [\n                                {\n                                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                                }\n                              ],\n                              \"isCollectible\": \"<boolean>\",\n                              \"metadataToken\": \"<integer>\"\n                            },\n                            \"name\": \"<string>\",\n                            \"parameterType\": {\n                              \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                            },\n                            \"position\": \"<integer>\",\n                            \"isIn\": \"<boolean>\",\n                            \"isLcid\": \"<boolean>\",\n                            \"isOptional\": \"<boolean>\",\n                            \"isOut\": \"<boolean>\",\n                            \"isRetval\": \"<boolean>\",\n                            \"defaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"rawDefaultValue\": {\n                              \"nullable\": true,\n                              \"readOnly\": true\n                            },\n                            \"hasDefaultValue\": \"<boolean>\",\n                            \"customAttributes\": [\n                              {\n                                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                              }\n                            ],\n                            \"metadataToken\": \"<integer>\"\n                          },\n                          \"returnType\": {\n                            \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                          },\n                          \"returnTypeCustomAttributes\": {}\n                        }\n                      }\n                    ],\n                    \"implementedInterfaces\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      }\n                    ]\n                  }\n                ],\n                \"exportedTypes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  }\n                ],\n                \"codeBase\": \"<string>\",\n                \"entryPoint\": {\n                  \"name\": \"<string>\",\n                  \"declaringType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"reflectedType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"module\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  },\n                  \"customAttributes\": [\n                    {\n                      \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                    }\n                  ],\n                  \"isCollectible\": \"<boolean>\",\n                  \"metadataToken\": \"<integer>\",\n                  \"attributes\": 0,\n                  \"methodImplementationFlags\": 4,\n                  \"callingConvention\": 1,\n                  \"isAbstract\": \"<boolean>\",\n                  \"isConstructor\": \"<boolean>\",\n                  \"isFinal\": \"<boolean>\",\n                  \"isHideBySig\": \"<boolean>\",\n                  \"isSpecialName\": \"<boolean>\",\n                  \"isStatic\": \"<boolean>\",\n                  \"isVirtual\": \"<boolean>\",\n                  \"isAssembly\": \"<boolean>\",\n                  \"isFamily\": \"<boolean>\",\n                  \"isFamilyAndAssembly\": \"<boolean>\",\n                  \"isFamilyOrAssembly\": \"<boolean>\",\n                  \"isPrivate\": \"<boolean>\",\n                  \"isPublic\": \"<boolean>\",\n                  \"isConstructedGenericMethod\": \"<boolean>\",\n                  \"isGenericMethod\": \"<boolean>\",\n                  \"isGenericMethodDefinition\": \"<boolean>\",\n                  \"containsGenericParameters\": \"<boolean>\",\n                  \"methodHandle\": {\n                    \"value\": {}\n                  },\n                  \"isSecurityCritical\": \"<boolean>\",\n                  \"isSecuritySafeCritical\": \"<boolean>\",\n                  \"isSecurityTransparent\": \"<boolean>\",\n                  \"memberType\": 16,\n                  \"returnParameter\": {\n                    \"attributes\": 0,\n                    \"member\": {\n                      \"memberType\": 32,\n                      \"name\": \"<string>\",\n                      \"declaringType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"reflectedType\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                      },\n                      \"module\": {\n                        \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                      },\n                      \"customAttributes\": [\n                        {\n                          \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                        }\n                      ],\n                      \"isCollectible\": \"<boolean>\",\n                      \"metadataToken\": \"<integer>\"\n                    },\n                    \"name\": \"<string>\",\n                    \"parameterType\": {\n                      \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                    },\n                    \"position\": \"<integer>\",\n                    \"isIn\": \"<boolean>\",\n                    \"isLcid\": \"<boolean>\",\n                    \"isOptional\": \"<boolean>\",\n                    \"isOut\": \"<boolean>\",\n                    \"isRetval\": \"<boolean>\",\n                    \"defaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"rawDefaultValue\": {\n                      \"nullable\": true,\n                      \"readOnly\": true\n                    },\n                    \"hasDefaultValue\": \"<boolean>\",\n                    \"customAttributes\": [\n                      {\n                        \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                      }\n                    ],\n                    \"metadataToken\": \"<integer>\"\n                  },\n                  \"returnType\": {\n                    \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                  },\n                  \"returnTypeCustomAttributes\": {}\n                },\n                \"fullName\": \"<string>\",\n                \"imageRuntimeVersion\": \"<string>\",\n                \"isDynamic\": \"<boolean>\",\n                \"location\": \"<string>\",\n                \"reflectionOnly\": \"<boolean>\",\n                \"isCollectible\": \"<boolean>\",\n                \"isFullyTrusted\": \"<boolean>\",\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"escapedCodeBase\": \"<string>\",\n                \"manifestModule\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"modules\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                  }\n                ],\n                \"globalAssemblyCache\": \"<boolean>\",\n                \"hostContext\": \"<long>\",\n                \"securityRuleSet\": 1\n              },\n              \"fullyQualifiedName\": \"<string>\",\n              \"name\": \"<string>\",\n              \"mdStreamVersion\": \"<integer>\",\n              \"moduleVersionId\": \"<uuid>\",\n              \"scopeName\": \"<string>\",\n              \"moduleHandle\": {\n                \"mdStreamVersion\": \"<integer>\"\n              },\n              \"customAttributes\": [\n                {\n                  \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                }\n              ],\n              \"metadataToken\": \"<integer>\"\n            },\n            \"customAttributes\": [\n              {\n                \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n              }\n            ],\n            \"isCollectible\": \"<boolean>\",\n            \"metadataToken\": \"<integer>\",\n            \"attributes\": 4,\n            \"methodImplementationFlags\": 64,\n            \"callingConvention\": 2,\n            \"isAbstract\": \"<boolean>\",\n            \"isConstructor\": \"<boolean>\",\n            \"isFinal\": \"<boolean>\",\n            \"isHideBySig\": \"<boolean>\",\n            \"isSpecialName\": \"<boolean>\",\n            \"isStatic\": \"<boolean>\",\n            \"isVirtual\": \"<boolean>\",\n            \"isAssembly\": \"<boolean>\",\n            \"isFamily\": \"<boolean>\",\n            \"isFamilyAndAssembly\": \"<boolean>\",\n            \"isFamilyOrAssembly\": \"<boolean>\",\n            \"isPrivate\": \"<boolean>\",\n            \"isPublic\": \"<boolean>\",\n            \"isConstructedGenericMethod\": \"<boolean>\",\n            \"isGenericMethod\": \"<boolean>\",\n            \"isGenericMethodDefinition\": \"<boolean>\",\n            \"containsGenericParameters\": \"<boolean>\",\n            \"methodHandle\": {\n              \"value\": {}\n            },\n            \"isSecurityCritical\": \"<boolean>\",\n            \"isSecuritySafeCritical\": \"<boolean>\",\n            \"isSecurityTransparent\": \"<boolean>\",\n            \"memberType\": 4\n          },\n          \"constructorArguments\": [\n            {\n              \"argumentType\": {\n                \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n              },\n              \"value\": {\n                \"nullable\": true\n              }\n            }\n          ],\n          \"namedArguments\": [\n            {\n              \"memberInfo\": {\n                \"memberType\": 64,\n                \"name\": \"<string>\",\n                \"declaringType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"reflectedType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"module\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Module detected>\"\n                },\n                \"customAttributes\": [\n                  {\n                    \"value\": \"<Circular reference to #/components/schemas/CustomAttributeData detected>\"\n                  }\n                ],\n                \"isCollectible\": \"<boolean>\",\n                \"metadataToken\": \"<integer>\"\n              },\n              \"typedValue\": {\n                \"argumentType\": {\n                  \"value\": \"<Circular reference to #/components/schemas/Type detected>\"\n                },\n                \"value\": {\n                  \"nullable\": true\n                }\n              },\n              \"memberName\": \"<string>\",\n              \"isField\": \"<boolean>\"\n            }\n          ]\n        }\n      ],\n      \"isCollectible\": \"<boolean>\",\n      \"metadataToken\": \"<integer>\",\n      \"attributes\": 16,\n      \"methodImplementationFlags\": 1,\n      \"callingConvention\": 32,\n      \"isAbstract\": \"<boolean>\",\n      \"isConstructor\": \"<boolean>\",\n      \"isFinal\": \"<boolean>\",\n      \"isHideBySig\": \"<boolean>\",\n      \"isSpecialName\": \"<boolean>\",\n      \"isStatic\": \"<boolean>\",\n      \"isVirtual\": \"<boolean>\",\n      \"isAssembly\": \"<boolean>\",\n      \"isFamily\": \"<boolean>\",\n      \"isFamilyAndAssembly\": \"<boolean>\",\n      \"isFamilyOrAssembly\": \"<boolean>\",\n      \"isPrivate\": \"<boolean>\",\n      \"isPublic\": \"<boolean>\",\n      \"isConstructedGenericMethod\": \"<boolean>\",\n      \"isGenericMethod\": \"<boolean>\",\n      \"isGenericMethodDefinition\": \"<boolean>\",\n      \"containsGenericParameters\": \"<boolean>\",\n      \"methodHandle\": {\n        \"value\": {}\n      },\n      \"isSecurityCritical\": \"<boolean>\",\n      \"isSecuritySafeCritical\": \"<boolean>\",\n      \"isSecurityTransparent\": \"<boolean>\"\n    },\n    \"message\": \"<string>\",\n    \"data\": {\n      \"eae5\": {}\n    },\n    \"innerException\": {\n      \"value\": \"<Circular reference to #/components/schemas/Exception detected>\"\n    },\n    \"helpLink\": \"<string>\",\n    \"source\": \"<string>\",\n    \"hResult\": \"<integer>\",\n    \"stackTrace\": \"<string>\"\n  },\n  \"helpLink\": \"<string>\",\n  \"source\": \"<string>\",\n  \"hResult\": \"<integer>\",\n  \"stackTrace\": \"<string>\"\n}"}],"_postman_id":"cab4f63d-bf34-4f26-9b1c-a643936d965e"}],"id":"da890da4-c234-40c3-991d-27ea6d84f882","description":"<p>Requests related to user specific tasks</p>\n","_postman_id":"da890da4-c234-40c3-991d-27ea6d84f882"},{"name":"Ticket Interaction","item":[{"name":"Create Ticket","id":"b857f322-420c-496c-9171-3d2828792104","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"unitType\": \"1\",\n  \"unitNumber\": \"1\",\n  \"printerTextNumber\": \"99\",\n  \"printerNumber\": \"1\",\n  \"printerCopies\": \"0\",\n  \"logo\": \"0\",\n  \"delay\": \"0\",\n  \"customerText\": \"\",\n  \"icu\": \"\",\n  \"ticketText\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/ticket","description":"<p>Creates a new ticket in the queuing system</p>\n","urlObject":{"path":["api","office","ticket"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"d46dda44-c8c1-45a6-abb3-6f354ea6750e","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"unitType\": \"<integer>\",\n  \"unitNumber\": \"<integer>\",\n  \"printerTextNumber\": \"<integer>\",\n  \"printerNumber\": \"<integer>\",\n  \"printerCopies\": \"<integer>\",\n  \"logo\": \"<integer>\",\n  \"delay\": \"<integer>\",\n  \"customerText\": \"<string>\",\n  \"icu\": \"<string>\",\n  \"ticketText\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/ticket"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"turnNumber\": \"<string>\",\n  \"trackNumber\": \"<integer>\",\n  \"icu\": \"<string>\",\n  \"waitingCustomers\": \"<integer>\"\n}"}],"_postman_id":"b857f322-420c-496c-9171-3d2828792104"},{"name":"Remove Ticket","id":"3a05d1d7-9f15-458c-9584-da6d40651a19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"trackNr\": \"64\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/removeticket","description":"<p>Removes the ticket with the provided track number from the queueing system</p>\n","urlObject":{"path":["api","office","removeticket"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"e6bac2fe-4174-49e8-9326-8b325c1d4583","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"trackNr\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/removeticket"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"3a05d1d7-9f15-458c-9584-da6d40651a19"},{"name":"Create raw ticket (Raw Check In)","event":[{"listen":"prerequest","script":{"exec":["var fromDate = new Date().toISOString();\r","pm.collectionVariables.set(\"fromDate\", fromDate);"],"type":"text/javascript","packages":{},"id":"d62e4b9f-c003-4cfc-ba5f-1693cab902a9"}}],"id":"0ca4e5db-43f8-45ad-b9d3-60baaa46da13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"bookingNumber\": \"123456789\",\n  \"icu\": \"\",\n  \"unitType\": 1,\n  \"unitNumber\": 1,\n  \"action\": 1,\n  \"position\": 1,\n  \"printerNumber\": 1,\n  \"printerCopies\": 0,\n  \"freeText\": [],\n  \"logo\": 0,\n  \"delay\": 0,\n  \"customerText\": \"\",\n  \"waitingArea\": \"\",\n  \"bookingTime\": \"\",\n  \"customerFirstName\": \"\",\n  \"customerLastName1\": \"\",\n  \"customerLastName2\": \"\",\n  \"userFirstName\": \"\",\n  \"userLastName1\": \"\",\n  \"userLastName2\": \"\",\n  \"ticketTextInactive\": 1,\n  \"ticketTextUnitDisabled\": 1,\n  \"ticketTextUnitEnabled\": 1,\n  \"ticketTextUnitEnabledNotAvailable\": 1,\n  \"ticketTextUnitEnabledAvailable\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/ticket/raw","description":"<p>Create a raw ticket with advanced options ex. Booked ticket.</p>\n","urlObject":{"path":["api","office","ticket","raw"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"7514145d-05df-46e7-8c45-af3abb5e80a0","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"bookingNumber\": \"<string>\",\n  \"icu\": \"<string>\",\n  \"unitType\": \"<integer>\",\n  \"unitNumber\": \"<integer>\",\n  \"action\": \"<integer>\",\n  \"position\": \"<integer>\",\n  \"printerNumber\": \"<integer>\",\n  \"printerCopies\": \"<integer>\",\n  \"freeText\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"logo\": \"<integer>\",\n  \"delay\": \"<integer>\",\n  \"customerText\": \"<string>\",\n  \"waitingArea\": \"<string>\",\n  \"bookingTime\": \"<dateTime>\",\n  \"customerFirstName\": \"<string>\",\n  \"customerLastName1\": \"<string>\",\n  \"customerLastName2\": \"<string>\",\n  \"userFirstName\": \"<string>\",\n  \"userLastName1\": \"<string>\",\n  \"userLastName2\": \"<string>\",\n  \"ticketTextInactive\": \"<integer>\",\n  \"ticketTextUnitDisabled\": \"<integer>\",\n  \"ticketTextUnitEnabled\": \"<integer>\",\n  \"ticketTextUnitEnabledNotAvailable\": \"<integer>\",\n  \"ticketTextUnitEnabledAvailable\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/ticket/raw"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<string>"}],"_postman_id":"0ca4e5db-43f8-45ad-b9d3-60baaa46da13"},{"name":"Create pseudo ticket","event":[{"listen":"test","script":{"exec":["var fromDate = new Date().getDate();\r","var fromTime = new Date().getTime();\r","\r","pm.collectionVariables.set(\"fromDate\", fromDate);\r","pm.collectionVariables.set(\"fromTime\", fromTime);"],"type":"text/javascript","packages":{},"id":"4d634d81-17b5-4c93-86fc-177f6f3315cc"}}],"id":"3c833b11-fb25-4935-a958-7342216e182c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"officeIndex\": 1,\n  \"userIndex\": 5,\n  \"ticketDate\": 1,\n  \"ticketTime\": 1,\n  \"endTime\": 10,\n  \"icu\": \"\",\n  \"servicetype\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/offices/ticket/createpseudoticket","description":"<p>Creates a ticket only for statistics purposes.</p>\n","urlObject":{"path":["api","offices","ticket","createpseudoticket"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"e772b6e9-9f48-4438-864f-3984d7206af3","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"officeIndex\": \"<integer>\",\n  \"userIndex\": \"<integer>\",\n  \"ticketDate\": \"<integer>\",\n  \"ticketTime\": \"<integer>\",\n  \"endTime\": \"<integer>\",\n  \"icu\": \"<string>\",\n  \"servicetype\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/offices/ticket/createpseudoticket"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": \"<boolean>\",\n  \"result\": [\n    {\n      \"ticketQueueIndex\": \"<integer>\",\n      \"serviceTypeNumber\": \"<integer>\",\n      \"serviceTypeName\": \"<string>\",\n      \"ticket\": \"<string>\",\n      \"officeGuid\": \"<string>\",\n      \"ticketTime\": \"<dateTime>\",\n      \"officeNumber\": \"<integer>\",\n      \"level2Number\": \"<integer>\",\n      \"level3Number\": \"<integer>\",\n      \"trackNumber\": \"<integer>\",\n      \"icu\": \"<string>\",\n      \"level3Name\": \"<string>\",\n      \"level2Name\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"queueType\": \"<integer>\",\n      \"forwardingTime\": \"<integer>\"\n    },\n    {\n      \"ticketQueueIndex\": \"<integer>\",\n      \"serviceTypeNumber\": \"<integer>\",\n      \"serviceTypeName\": \"<string>\",\n      \"ticket\": \"<string>\",\n      \"officeGuid\": \"<string>\",\n      \"ticketTime\": \"<dateTime>\",\n      \"officeNumber\": \"<integer>\",\n      \"level2Number\": \"<integer>\",\n      \"level3Number\": \"<integer>\",\n      \"trackNumber\": \"<integer>\",\n      \"icu\": \"<string>\",\n      \"level3Name\": \"<string>\",\n      \"level2Name\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"queueType\": \"<integer>\",\n      \"forwardingTime\": \"<integer>\"\n    }\n  ]\n}"}],"_postman_id":"3c833b11-fb25-4935-a958-7342216e182c"},{"name":"Send ticket","id":"be554a52-7704-47e9-a62a-f62914b4ce7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": 1,\n  \"unitType\": 1,\n  \"unitNumber\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/sendticket","description":"<p>Sends the ticket from the given workstation to the specified unit’s <strong>secondary queue</strong></p>\n","urlObject":{"path":["api","office","sendticket"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"cb268003-2749-4960-9d04-25d10f1cc1e7","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": \"<integer>\",\n  \"unitType\": \"<integer>\",\n  \"unitNumber\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/sendticket"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"be554a52-7704-47e9-a62a-f62914b4ce7a"},{"name":"End of service","id":"d582c34e-4448-48b8-908e-93a423af25f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": 1,\n  \"isLostTicket\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/endofservice","description":"<p>When the service is done within the unit and no further tickets should be called, the end of service should be issued.</p>\n","urlObject":{"path":["api","office","endofservice"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"8ce410f7-1bfb-476f-9053-89645810a89b","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": \"<integer>\",\n  \"isLostTicket\": \"<boolean>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/endofservice"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"d582c34e-4448-48b8-908e-93a423af25f0"},{"name":"Set ticket text","id":"51746cab-170a-4374-aad9-77250cff617f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": 1,\n  \"ticketTrackNumber\": 69,\n  \"ticketText\": \"Test\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/SetTicketText","description":"<p>Sets the <strong>ticket text</strong> of the specified ticket</p>\n","urlObject":{"path":["api","office","SetTicketText"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"4290a4e9-964f-4766-b339-483fb27b6bb4","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": \"<integer>\",\n  \"ticketTrackNumber\": \"<integer>\",\n  \"ticketText\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/SetTicketText"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"51746cab-170a-4374-aad9-77250cff617f"},{"name":"Add ticket text","id":"33b15830-a991-403e-920c-461ca3eea21f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"trackNumber\": 69,\n  \"ticketText\": \"Test\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/AddTicketText","description":"<p>Adds a <strong>ticket text</strong> to the specified ticket</p>\n","urlObject":{"path":["api","office","AddTicketText"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"6a2dba62-a332-41ff-8dfc-744cbb845f7a","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"trackNumber\": \"<integer>\",\n  \"ticketText\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/AddTicketText"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"33b15830-a991-403e-920c-461ca3eea21f"},{"name":"Get waiting ticket list","id":"15260856-9c55-4636-875a-e35257abe07d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"unitType\": 1,\n  \"unitNumber\": 1,\n  \"queueType\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/GetWaitingTicketList","description":"<p>Get a list of waiting tickets in a queue specified in the body of the request</p>\n","urlObject":{"path":["api","office","GetWaitingTicketList"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"5f901144-bcfe-4f0b-a29a-c3c0acec926e","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"unitType\": \"<integer>\",\n  \"unitNumber\": \"<integer>\",\n  \"queueType\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/GetWaitingTicketList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"trackNumber\": \"<integer>\",\n    \"turnNumber\": \"<string>\",\n    \"text\": \"<string>\"\n  },\n  {\n    \"trackNumber\": \"<integer>\",\n    \"turnNumber\": \"<string>\",\n    \"text\": \"<string>\"\n  }\n]"}],"_postman_id":"15260856-9c55-4636-875a-e35257abe07d"},{"name":"Get ticket status","id":"0db510a0-0351-4038-a9e5-aa0f7a30feba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"ticket\": \"B301\",\n  \"officeGuid\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/ticketStatus","description":"<p>Get the status information for the specified ticket</p>\n","urlObject":{"path":["api","office","ticketStatus"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"3073a319-027f-44c0-8a4d-b69e9ec5cda7","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"ticket\": \"<string>\",\n  \"officeGuid\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/ticketStatus"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": \"<boolean>\",\n  \"result\": [\n    {\n      \"ticketQueueIndex\": \"<integer>\",\n      \"serviceTypeNumber\": \"<integer>\",\n      \"serviceTypeName\": \"<string>\",\n      \"ticket\": \"<string>\",\n      \"officeGuid\": \"<string>\",\n      \"ticketTime\": \"<dateTime>\",\n      \"officeNumber\": \"<integer>\",\n      \"level2Number\": \"<integer>\",\n      \"level3Number\": \"<integer>\",\n      \"trackNumber\": \"<integer>\",\n      \"icu\": \"<string>\",\n      \"level3Name\": \"<string>\",\n      \"level2Name\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"queueType\": \"<integer>\",\n      \"forwardingTime\": \"<integer>\"\n    },\n    {\n      \"ticketQueueIndex\": \"<integer>\",\n      \"serviceTypeNumber\": \"<integer>\",\n      \"serviceTypeName\": \"<string>\",\n      \"ticket\": \"<string>\",\n      \"officeGuid\": \"<string>\",\n      \"ticketTime\": \"<dateTime>\",\n      \"officeNumber\": \"<integer>\",\n      \"level2Number\": \"<integer>\",\n      \"level3Number\": \"<integer>\",\n      \"trackNumber\": \"<integer>\",\n      \"icu\": \"<string>\",\n      \"level3Name\": \"<string>\",\n      \"level2Name\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"queueType\": \"<integer>\",\n      \"forwardingTime\": \"<integer>\"\n    }\n  ]\n}"}],"_postman_id":"0db510a0-0351-4038-a9e5-aa0f7a30feba"},{"name":"Get ticket information","id":"6e2d6209-9780-4d27-a6e6-49f534207b33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/office/GetTicketInfo/B301","description":"<p>Get information about the specified ticket</p>\n","urlObject":{"path":["api","office","GetTicketInfo","B301"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"4386e1d4-8b2d-49ea-969e-b76160c0e320","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/office/GetTicketInfo/:ticketNumber","host":["http://example.com/NQC/NQWebServices"],"path":["api","office","GetTicketInfo",":ticketNumber"],"variable":[{"key":"ticketNumber"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"office\": \"<integer>\",\n    \"level2\": \"<integer>\",\n    \"level3\": \"<integer>\",\n    \"trackNr\": \"<integer>\",\n    \"icu\": \"<string>\",\n    \"level3Name\": \"<string>\",\n    \"level2Name\": \"<string>\",\n    \"officeName\": \"<string>\",\n    \"ticket\": \"<string>\",\n    \"serviceType\": \"<integer>\",\n    \"cashier\": \"<integer>\",\n    \"user\": \"<integer>\",\n    \"ticketTime\": \"<dateTime>\",\n    \"forwardingTime\": \"<dateTime>\",\n    \"endTime\": \"<dateTime>\",\n    \"waitingTime\": \"<string>\",\n    \"serviceTime\": \"<string>\",\n    \"queueType\": \"<integer>\",\n    \"customerID\": \"<string>\",\n    \"forwardTrack\": \"<integer>\",\n    \"backTrack\": \"<integer>\",\n    \"modificationTime\": \"<dateTime>\"\n  },\n  {\n    \"office\": \"<integer>\",\n    \"level2\": \"<integer>\",\n    \"level3\": \"<integer>\",\n    \"trackNr\": \"<integer>\",\n    \"icu\": \"<string>\",\n    \"level3Name\": \"<string>\",\n    \"level2Name\": \"<string>\",\n    \"officeName\": \"<string>\",\n    \"ticket\": \"<string>\",\n    \"serviceType\": \"<integer>\",\n    \"cashier\": \"<integer>\",\n    \"user\": \"<integer>\",\n    \"ticketTime\": \"<dateTime>\",\n    \"forwardingTime\": \"<dateTime>\",\n    \"endTime\": \"<dateTime>\",\n    \"waitingTime\": \"<string>\",\n    \"serviceTime\": \"<string>\",\n    \"queueType\": \"<integer>\",\n    \"customerID\": \"<string>\",\n    \"forwardTrack\": \"<integer>\",\n    \"backTrack\": \"<integer>\",\n    \"modificationTime\": \"<dateTime>\"\n  }\n]"}],"_postman_id":"6e2d6209-9780-4d27-a6e6-49f534207b33"}],"id":"2777d571-b170-4246-9d95-4a6f52bc1458","description":"<p>Requests related to ticket specific tasks</p>\n","_postman_id":"2777d571-b170-4246-9d95-4a6f52bc1458"},{"name":"Workstation Interaction","item":[{"name":"Open workstation","id":"3384dffb-384e-4472-a618-f8f179ec6313","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/open","description":"<p><strong>Open the specified workstation</strong></p>\n<p>For systems that is configured to operate without users</p>\n","urlObject":{"path":["api","workstation","1","open"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"5aa2f231-e153-456c-adf2-6e645a2866c8","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/open","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","open"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"3384dffb-384e-4472-a618-f8f179ec6313"},{"name":"Close workstation","id":"298653f2-01bf-4969-aa4b-ce758ca4d214","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/close","description":"<p><strong>Close the specified workstation</strong></p>\n<p>For systems that is configured to operate without users</p>\n","urlObject":{"path":["api","workstation","1","close"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"9f960573-12d0-4c6f-89da-a324d45d67f4","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/close","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","close"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"298653f2-01bf-4969-aa4b-ce758ca4d214"},{"name":"Login workstation","id":"9e1f2906-a961-4ca6-89e6-6a98529704a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": 1,\n  \"userId\": 6,\n  \"password\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/workstation/login","description":"<p><strong>Open the specified workstation</strong></p>\n<p>For systems that is configured to operate with users</p>\n","urlObject":{"path":["api","workstation","login"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"368fa7e4-32bf-48e1-aec3-c2bbf93249db","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": \"<integer>\",\n  \"userId\": \"<integer>\",\n  \"password\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/workstation/login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"9e1f2906-a961-4ca6-89e6-6a98529704a4"},{"name":"Logoff workstation","id":"f12653ef-1a63-495b-a2a0-fe5ea10cf9c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/logoff","description":"<p><strong>Close the specified workstation</strong></p>\n<p>For systems that is configured to operate with users</p>\n","urlObject":{"path":["api","workstation","1","logoff"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"09d75456-fc4a-4ef4-b458-3592168aad12","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/logoff","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","logoff"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"f12653ef-1a63-495b-a2a0-fe5ea10cf9c5"},{"name":"Set workstation queue type","id":"16c07cea-c593-4245-869a-6b4a6b3d30ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/queuetype/1","description":"<p>Set the queue type of the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","queuetype","1"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"07f2761f-18a7-4afd-a578-3e1041a900f6","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/queuetype/:queueType","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","queuetype",":queueType"],"variable":[{"key":"workstationId"},{"key":"queueType"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"16c07cea-c593-4245-869a-6b4a6b3d30ce"},{"name":"Set workstation servicetype","id":"f9982d8e-d88c-498b-83c1-c4a4101a04d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/servicetype/1","description":"<p>Set the servicetype of the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","servicetype","1"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"5b28db8d-b39f-4ad7-b55d-4bb40bf29092","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/servicetype/:servicetypeId","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","servicetype",":servicetypeId"],"variable":[{"key":"workstationId"},{"key":"servicetypeId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"f9982d8e-d88c-498b-83c1-c4a4101a04d1"},{"name":"Set workstation priority","id":"04f3e2db-427a-4acd-b1ce-ce73c94aa87a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/priority/1","description":"<p>Set the priority of the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","priority","1"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"009d7353-e78f-4b3c-bda6-2fd1201fcb63","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/priority/:priorityNumber","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","priority",":priorityNumber"],"variable":[{"key":"workstationId"},{"key":"priorityNumber"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"04f3e2db-427a-4acd-b1ce-ce73c94aa87a"},{"name":"Call next ticket","id":"e024d5de-cf3a-42dd-b616-824f1ca74b77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/callnextticket","description":"<p>Call the next waiting ticket in the currently selected queue</p>\n","urlObject":{"path":["api","office","callnextticket"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"97c0c604-f726-4288-b6e1-1d6f097a0d2d","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": \"<integer>\",\n  \"virtualCashier\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/callnextticket"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<string>"}],"_postman_id":"e024d5de-cf3a-42dd-b616-824f1ca74b77"},{"name":"Call waiting ticket","id":"bca0c810-f394-4076-b7a6-dd9a4ed3957d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": \"1\",\n  \"ticketTrackNumber\": \"65\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/callwaitingticket","description":"<p>Call a specific ticket regardless of position in queue</p>\n","urlObject":{"path":["api","office","callwaitingticket"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"613418b0-235e-483c-a16f-6d51c536dd5e","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": \"<integer>\",\n  \"ticketTrackNumber\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/callwaitingticket"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<string>"}],"_postman_id":"bca0c810-f394-4076-b7a6-dd9a4ed3957d"},{"name":"Recall serviced ticket","id":"a1d54b60-fd99-4eb1-91c5-47039e2807f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": 1,\n  \"ticketTrackNumber\": 65\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/recallservicedticket","description":"<p>Recall a serviced ticket</p>\n","urlObject":{"path":["api","office","recallservicedticket"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"fcd439cd-c4ba-431b-af5f-85542cc9e6dd","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": \"<integer>\",\n  \"ticketTrackNumber\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/recallservicedticket"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<string>"}],"_postman_id":"a1d54b60-fd99-4eb1-91c5-47039e2807f6"},{"name":"Recall current ticket","id":"0518d930-4eee-461b-a39e-cbe33af07a85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": 1,\n  \"trackNumber\": 65\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/recallcurrentticket","description":"<p>Recall the ticket that is currently being served by the workstation</p>\n","urlObject":{"path":["api","office","recallcurrentticket"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"3d3cac8b-b70f-4b9e-a349-ddaf302cba68","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"workstationId\": \"<integer>\",\n  \"trackNumber\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/office/recallcurrentticket"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<string>"}],"_postman_id":"0518d930-4eee-461b-a39e-cbe33af07a85"},{"name":"Get waiting tickets by workstation","id":"10906105-867f-4f14-8898-6147876f16d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/tickets/waiting","description":"<p>Get a list of tickets that is currently waiting in the workstation queue of the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","tickets","waiting"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"1a2ac466-d408-471c-b108-041339aeeb02","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/tickets/waiting","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","tickets","waiting"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"trackNumber\": \"<integer>\",\n    \"turnNumber\": \"<string>\",\n    \"text\": \"<string>\"\n  },\n  {\n    \"trackNumber\": \"<integer>\",\n    \"turnNumber\": \"<string>\",\n    \"text\": \"<string>\"\n  }\n]"}],"_postman_id":"10906105-867f-4f14-8898-6147876f16d4"},{"name":"Get workstation use list","id":"84cd4aed-951a-41ed-b43d-c608a427cc60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/uselist","description":"<p>Get a list of assigned queues and users for the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","uselist"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"fbd72c25-9cb7-4497-81e5-a9ff00d1864e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/uselist","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","uselist"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"serviceTypes\": [\n    {\n      \"id\": \"<integer>\",\n      \"officeGuid\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"name\": \"<string>\",\n      \"active\": \"<boolean>\",\n      \"openCashiers\": \"<integer>\",\n      \"activeCashiers\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"waitingCustomersMQ\": \"<integer>\",\n      \"waitingCustomersSQ\": \"<integer>\",\n      \"waitingCustomersBQ\": \"<integer>\",\n      \"servedCustomersMQ\": \"<integer>\",\n      \"servedCustomersSQ\": \"<integer>\",\n      \"servedCustomersBQ\": \"<integer>\",\n      \"longestWaitingTimeTicketMQ\": \"<integer>\",\n      \"longestWaitingTimeTicketSQ\": \"<integer>\",\n      \"longestWaitingTimeTicketBQ\": \"<integer>\",\n      \"longestServiceTime\": \"<integer>\",\n      \"averageWaitingTimeMQ\": \"<integer>\",\n      \"averageWaitingTimeSQ\": \"<integer>\",\n      \"averageWaitingTimeBQ\": \"<integer>\",\n      \"averageServiceTimeMQ\": \"<integer>\",\n      \"averageServiceTimeSQ\": \"<integer>\",\n      \"averageServiceTimeBQ\": \"<integer>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"officeGuid\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"name\": \"<string>\",\n      \"active\": \"<boolean>\",\n      \"openCashiers\": \"<integer>\",\n      \"activeCashiers\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"waitingCustomersMQ\": \"<integer>\",\n      \"waitingCustomersSQ\": \"<integer>\",\n      \"waitingCustomersBQ\": \"<integer>\",\n      \"servedCustomersMQ\": \"<integer>\",\n      \"servedCustomersSQ\": \"<integer>\",\n      \"servedCustomersBQ\": \"<integer>\",\n      \"longestWaitingTimeTicketMQ\": \"<integer>\",\n      \"longestWaitingTimeTicketSQ\": \"<integer>\",\n      \"longestWaitingTimeTicketBQ\": \"<integer>\",\n      \"longestServiceTime\": \"<integer>\",\n      \"averageWaitingTimeMQ\": \"<integer>\",\n      \"averageWaitingTimeSQ\": \"<integer>\",\n      \"averageWaitingTimeBQ\": \"<integer>\",\n      \"averageServiceTimeMQ\": \"<integer>\",\n      \"averageServiceTimeSQ\": \"<integer>\",\n      \"averageServiceTimeBQ\": \"<integer>\"\n    }\n  ],\n  \"workstations\": [\n    {\n      \"id\": \"<integer>\",\n      \"name1\": \"<string>\",\n      \"name2\": \"<string>\",\n      \"name3\": \"<string>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"name1\": \"<string>\",\n      \"name2\": \"<string>\",\n      \"name3\": \"<string>\"\n    }\n  ],\n  \"users\": [\n    {\n      \"id\": \"<integer>\",\n      \"name1\": \"<string>\",\n      \"name2\": \"<string>\",\n      \"name3\": \"<string>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"name1\": \"<string>\",\n      \"name2\": \"<string>\",\n      \"name3\": \"<string>\"\n    }\n  ]\n}"}],"_postman_id":"84cd4aed-951a-41ed-b43d-c608a427cc60"},{"name":"Get workstation priority information","id":"81894d37-ccf5-4d5b-92cd-138f9ad3b27c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/priority/info","description":"<p>Get information about the currently selected priority for the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","priority","info"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"18159d21-d7ec-4775-8570-9236b352f798","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/priority/info","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","priority","info"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\",\n    \"waitingCustomers\": \"<integer>\"\n  },\n  {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\",\n    \"waitingCustomers\": \"<integer>\"\n  }\n]"}],"_postman_id":"81894d37-ccf5-4d5b-92cd-138f9ad3b27c"},{"name":"Get workstation priority list","id":"0143dc7f-8c16-466f-9970-ad733f03b442","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/priority/list","description":"<p>Get a list a available priorities for the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","priority","list"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"5470174d-5763-4623-84f9-75e699a08300","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/priority/list","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","priority","list"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\"\n  },\n  {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\"\n  }\n]"}],"_postman_id":"0143dc7f-8c16-466f-9970-ad733f03b442"},{"name":"Get workstation panel state","id":"546efbb9-f0d7-4bf8-abff-e3650bd7cf79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/panelstate","description":"<p>Get a summary of the state of the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","panelstate"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"1fe14e97-0586-4221-a059-25b5b660bd3b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/panelstate","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","panelstate"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"workstationId\": \"<integer>\",\n  \"queues\": [\n    {\n      \"name\": \"<string>\",\n      \"tickets\": \"<integer>\",\n      \"isActive\": \"<boolean>\",\n      \"redLed\": \"<boolean>\"\n    },\n    {\n      \"name\": \"<string>\",\n      \"tickets\": \"<integer>\",\n      \"isActive\": \"<boolean>\",\n      \"redLed\": \"<boolean>\"\n    }\n  ],\n  \"workstationCallActive\": \"<boolean>\",\n  \"isForcedTransaction\": \"<boolean>\",\n  \"isActive\": \"<boolean>\",\n  \"serviceType\": \"<string>\",\n  \"statistics\": \"<string>\",\n  \"turnNumber\": \"<string>\",\n  \"status\": \"<string>\",\n  \"ticketText\": \"<string>\",\n  \"isPreQueueing\": \"<boolean>\",\n  \"waitingCustomers\": \"<integer>\",\n  \"priority\": \"<integer>\"\n}"}],"_postman_id":"546efbb9-f0d7-4bf8-abff-e3650bd7cf79"},{"name":"Get workstation forced logon status","id":"9f05404c-91de-447e-b995-ce6c41a58cc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/forcedlogon","description":"<p>Get the status of <strong>\"Forced Logon\"</strong> of the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","forcedlogon"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"3aed6d7d-b66e-44f0-ae91-90f10fd55e43","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/forcedlogon","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","forcedlogon"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"9f05404c-91de-447e-b995-ce6c41a58cc8"},{"name":"Get workstation Send-To list","id":"4d4e3b39-ac87-45bc-be11-944c6b3f7248","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/sendtolist","description":"<p>Get a list of available workstations, users and servicetypes when sending a ticket for the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","sendtolist"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"702856dd-c670-42bc-a533-84cafdcc1d32","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/sendtolist","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","sendtolist"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"serviceTypes\": [\n    {\n      \"id\": \"<integer>\",\n      \"officeGuid\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"name\": \"<string>\",\n      \"active\": \"<boolean>\",\n      \"openCashiers\": \"<integer>\",\n      \"activeCashiers\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"waitingCustomersMQ\": \"<integer>\",\n      \"waitingCustomersSQ\": \"<integer>\",\n      \"waitingCustomersBQ\": \"<integer>\",\n      \"servedCustomersMQ\": \"<integer>\",\n      \"servedCustomersSQ\": \"<integer>\",\n      \"servedCustomersBQ\": \"<integer>\",\n      \"longestWaitingTimeTicketMQ\": \"<integer>\",\n      \"longestWaitingTimeTicketSQ\": \"<integer>\",\n      \"longestWaitingTimeTicketBQ\": \"<integer>\",\n      \"longestServiceTime\": \"<integer>\",\n      \"averageWaitingTimeMQ\": \"<integer>\",\n      \"averageWaitingTimeSQ\": \"<integer>\",\n      \"averageWaitingTimeBQ\": \"<integer>\",\n      \"averageServiceTimeMQ\": \"<integer>\",\n      \"averageServiceTimeSQ\": \"<integer>\",\n      \"averageServiceTimeBQ\": \"<integer>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"officeGuid\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"name\": \"<string>\",\n      \"active\": \"<boolean>\",\n      \"openCashiers\": \"<integer>\",\n      \"activeCashiers\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"waitingCustomersMQ\": \"<integer>\",\n      \"waitingCustomersSQ\": \"<integer>\",\n      \"waitingCustomersBQ\": \"<integer>\",\n      \"servedCustomersMQ\": \"<integer>\",\n      \"servedCustomersSQ\": \"<integer>\",\n      \"servedCustomersBQ\": \"<integer>\",\n      \"longestWaitingTimeTicketMQ\": \"<integer>\",\n      \"longestWaitingTimeTicketSQ\": \"<integer>\",\n      \"longestWaitingTimeTicketBQ\": \"<integer>\",\n      \"longestServiceTime\": \"<integer>\",\n      \"averageWaitingTimeMQ\": \"<integer>\",\n      \"averageWaitingTimeSQ\": \"<integer>\",\n      \"averageWaitingTimeBQ\": \"<integer>\",\n      \"averageServiceTimeMQ\": \"<integer>\",\n      \"averageServiceTimeSQ\": \"<integer>\",\n      \"averageServiceTimeBQ\": \"<integer>\"\n    }\n  ],\n  \"workstations\": [\n    {\n      \"id\": \"<integer>\",\n      \"name1\": \"<string>\",\n      \"name2\": \"<string>\",\n      \"name3\": \"<string>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"name1\": \"<string>\",\n      \"name2\": \"<string>\",\n      \"name3\": \"<string>\"\n    }\n  ],\n  \"users\": [\n    {\n      \"id\": \"<integer>\",\n      \"name1\": \"<string>\",\n      \"name2\": \"<string>\",\n      \"name3\": \"<string>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"name1\": \"<string>\",\n      \"name2\": \"<string>\",\n      \"name3\": \"<string>\"\n    }\n  ]\n}"}],"_postman_id":"4d4e3b39-ac87-45bc-be11-944c6b3f7248"},{"name":"Get workstation state","id":"a94536c2-9249-411b-a789-b85520ad31c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/statebrief","description":"<p>Get the current state of the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","statebrief"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"84d5e024-e377-466c-90c8-d0f41440337e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/statebrief","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","statebrief"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"workstationId\": \"<integer>\",\n  \"serviceType\": \"<integer>\",\n  \"active\": \"<boolean>\",\n  \"open\": \"<boolean>\",\n  \"userId\": \"<integer>\",\n  \"turnNumber\": \"<string>\"\n}"}],"_postman_id":"a94536c2-9249-411b-a789-b85520ad31c2"},{"name":"Get all workstations queue information","id":"c0230c99-c1f1-4aed-a530-406871aca717","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/queueinfo/workstation","description":"<p>Get the queue information of all workstations</p>\n","urlObject":{"path":["api","queueinfo","workstation"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"3b39c899-cf3c-40cd-bd1a-51ed560a291b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"http://example.com/NQC/NQWebServices/api/queueinfo/workstation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"workstation\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"serviceType\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"user\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"isOpen\": \"<boolean>\",\n    \"isActive\": \"<boolean>\",\n    \"isCallActive\": \"<boolean>\",\n    \"currentPriority\": \"<integer>\",\n    \"currentTicket\": \"<string>\",\n    \"lastForwardedTicket\": \"<string>\",\n    \"queues\": {\n      \"main\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"secondary\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"booked\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      }\n    },\n    \"longestServiceTimeStart\": \"<dateTime>\",\n    \"servedServiceTypeTickets\": \"<integer>\",\n    \"averageWaitingTime\": \"<integer>\",\n    \"averageServiceTime\": \"<integer>\",\n    \"lastUpdated\": \"<dateTime>\",\n    \"message\": \"<string>\"\n  },\n  {\n    \"workstation\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"serviceType\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"user\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"isOpen\": \"<boolean>\",\n    \"isActive\": \"<boolean>\",\n    \"isCallActive\": \"<boolean>\",\n    \"currentPriority\": \"<integer>\",\n    \"currentTicket\": \"<string>\",\n    \"lastForwardedTicket\": \"<string>\",\n    \"queues\": {\n      \"main\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"secondary\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"booked\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      }\n    },\n    \"longestServiceTimeStart\": \"<dateTime>\",\n    \"servedServiceTypeTickets\": \"<integer>\",\n    \"averageWaitingTime\": \"<integer>\",\n    \"averageServiceTime\": \"<integer>\",\n    \"lastUpdated\": \"<dateTime>\",\n    \"message\": \"<string>\"\n  }\n]"}],"_postman_id":"c0230c99-c1f1-4aed-a530-406871aca717"},{"name":"Get workstation queue information by ID","id":"2739e4fa-7eb0-4faf-92f3-7f2a3ec05fec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/queueinfo/workstation/1","description":"<p>Get the queue information of the specified workstation</p>\n","urlObject":{"path":["api","queueinfo","workstation","1"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"30ffe7bd-6f96-4ee3-81be-f254e384bbfd","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/queueinfo/workstation/:workstationId","host":["http://example.com/NQC/NQWebServices"],"path":["api","queueinfo","workstation",":workstationId"],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"workstation\": {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\"\n  },\n  \"serviceType\": {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\"\n  },\n  \"user\": {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\"\n  },\n  \"isOpen\": \"<boolean>\",\n  \"isActive\": \"<boolean>\",\n  \"isCallActive\": \"<boolean>\",\n  \"currentPriority\": \"<integer>\",\n  \"currentTicket\": \"<string>\",\n  \"lastForwardedTicket\": \"<string>\",\n  \"queues\": {\n    \"main\": {\n      \"waitingTickets\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"longestWaitingTicketTime\": \"<dateTime>\",\n      \"servedTickets\": \"<integer>\",\n      \"averageWaitingTime\": \"<integer>\",\n      \"averageServiceTime\": \"<integer>\"\n    },\n    \"secondary\": {\n      \"waitingTickets\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"longestWaitingTicketTime\": \"<dateTime>\",\n      \"servedTickets\": \"<integer>\",\n      \"averageWaitingTime\": \"<integer>\",\n      \"averageServiceTime\": \"<integer>\"\n    },\n    \"booked\": {\n      \"waitingTickets\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"longestWaitingTicketTime\": \"<dateTime>\",\n      \"servedTickets\": \"<integer>\",\n      \"averageWaitingTime\": \"<integer>\",\n      \"averageServiceTime\": \"<integer>\"\n    }\n  },\n  \"longestServiceTimeStart\": \"<dateTime>\",\n  \"servedServiceTypeTickets\": \"<integer>\",\n  \"averageWaitingTime\": \"<integer>\",\n  \"averageServiceTime\": \"<integer>\",\n  \"lastUpdated\": \"<dateTime>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"2739e4fa-7eb0-4faf-92f3-7f2a3ec05fec"},{"name":"Get workstation serviced tickets","id":"bf550d85-5d78-4509-a6ab-82c200e87e8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/workstation/1/tickets/serviced?userId=1","description":"<p>Get a list of serviced tickets for the specified workstation</p>\n","urlObject":{"path":["api","workstation","1","tickets","serviced"],"host":["http://example.com/NQC/NQWebServices"],"query":[{"key":"userId","value":"1"}],"variable":[]}},"response":[{"id":"45c9bd89-b681-4a08-9f16-3ce9af1a5460","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/workstation/:workstationId/tickets/serviced?userId=<integer>","host":["http://example.com/NQC/NQWebServices"],"path":["api","workstation",":workstationId","tickets","serviced"],"query":[{"key":"userId","value":"<integer>"}],"variable":[{"key":"workstationId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"trackNumber\": \"<integer>\",\n    \"turnNumber\": \"<string>\",\n    \"text\": \"<string>\"\n  },\n  {\n    \"trackNumber\": \"<integer>\",\n    \"turnNumber\": \"<string>\",\n    \"text\": \"<string>\"\n  }\n]"}],"_postman_id":"bf550d85-5d78-4509-a6ab-82c200e87e8a"}],"id":"66c0f404-6936-4f9a-9d9a-9a933dd45e9b","description":"<p>Requests related to workstation tasks</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"bb77e700-f0df-4102-9941-f82a322df57d"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"544348d9-6581-486a-b9d0-ddbf7c5febdc"}}],"_postman_id":"66c0f404-6936-4f9a-9d9a-9a933dd45e9b"},{"name":"Servicetype Interaction","item":[{"name":"Toggle status","id":"39ca086a-8986-435d-8fc9-8d5cd4bd6197","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/servicetype/1/togglestatus/true","description":"<p>Set the status of the specified servicetype</p>\n","urlObject":{"path":["api","servicetype","1","togglestatus","true"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"06ccda20-7dfc-4578-9484-63f8fcab2ec1","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/servicetype/:serviceTypeId/togglestatus/:status","host":["http://example.com/NQC/NQWebServices"],"path":["api","servicetype",":serviceTypeId","togglestatus",":status"],"variable":[{"key":"serviceTypeId"},{"key":"status"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"39ca086a-8986-435d-8fc9-8d5cd4bd6197"},{"name":"Get servicetype status","id":"95ee2474-2cb8-4e4f-a397-367d1981ece4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/servicetype/1/IsActive","description":"<p>Get the status of the specified servicetype</p>\n","urlObject":{"path":["api","servicetype","1","IsActive"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"81fff8b0-1e41-4764-ae35-d2484ae8210f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/servicetype/:serviceTypeId/IsActive","protocol":"http","host":["example","com"],"path":["NQC","NQWebServices","api","servicetype",":serviceTypeId","IsActive"],"variable":[{"key":"serviceTypeId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<boolean>"}],"_postman_id":"95ee2474-2cb8-4e4f-a397-367d1981ece4"},{"name":"Get servicetype queue information by ID","id":"49509fa9-b697-4402-803c-8370d044a025","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/queueinfo/servicetype/1","description":"<p>Get the queue information for the specified servicetype</p>\n","urlObject":{"path":["api","queueinfo","servicetype","1"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"fceac808-c74f-42ed-a41b-da48e64e3700","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"http://example.com/NQC/NQWebServices/api/queueinfo/servicetype/:serviceTypeId","protocol":"http","host":["example","com"],"path":["NQC","NQWebServices","api","queueinfo","servicetype",":serviceTypeId"],"variable":[{"key":"serviceTypeId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"serviceType\": {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\"\n  },\n  \"openWorkstations\": \"<integer>\",\n  \"activeWorkstations\": \"<integer>\",\n  \"lastForwardedTicket\": \"<string>\",\n  \"queues\": {\n    \"main\": {\n      \"waitingTickets\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"longestWaitingTicketTime\": \"<dateTime>\",\n      \"servedTickets\": \"<integer>\",\n      \"averageWaitingTime\": \"<integer>\",\n      \"averageServiceTime\": \"<integer>\"\n    },\n    \"secondary\": {\n      \"waitingTickets\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"longestWaitingTicketTime\": \"<dateTime>\",\n      \"servedTickets\": \"<integer>\",\n      \"averageWaitingTime\": \"<integer>\",\n      \"averageServiceTime\": \"<integer>\"\n    },\n    \"booked\": {\n      \"waitingTickets\": \"<integer>\",\n      \"lastForwarded\": \"<string>\",\n      \"longestWaitingTicketTime\": \"<dateTime>\",\n      \"servedTickets\": \"<integer>\",\n      \"averageWaitingTime\": \"<integer>\",\n      \"averageServiceTime\": \"<integer>\"\n    }\n  },\n  \"longestServiceTimeStart\": \"<dateTime>\",\n  \"averageWaitingTime\": \"<integer>\",\n  \"averageServiceTime\": \"<integer>\",\n  \"lastUpdated\": \"<dateTime>\"\n}"}],"_postman_id":"49509fa9-b697-4402-803c-8370d044a025"},{"name":"Get all servicetypes queue information","id":"9ba10a75-1b4e-4868-ac52-c5eaeb5a69be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/queueinfo/servicetype","description":"<p>Get the queue information for all servicetypes</p>\n","urlObject":{"path":["api","queueinfo","servicetype"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"892134c7-2ea9-4e21-8dca-971886082c10","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"http://example.com/NQC/NQWebServices/api/queueinfo/servicetype"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"serviceType\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"openWorkstations\": \"<integer>\",\n    \"activeWorkstations\": \"<integer>\",\n    \"lastForwardedTicket\": \"<string>\",\n    \"queues\": {\n      \"main\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"secondary\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"booked\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      }\n    },\n    \"longestServiceTimeStart\": \"<dateTime>\",\n    \"averageWaitingTime\": \"<integer>\",\n    \"averageServiceTime\": \"<integer>\",\n    \"lastUpdated\": \"<dateTime>\"\n  },\n  {\n    \"serviceType\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"openWorkstations\": \"<integer>\",\n    \"activeWorkstations\": \"<integer>\",\n    \"lastForwardedTicket\": \"<string>\",\n    \"queues\": {\n      \"main\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"secondary\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      },\n      \"booked\": {\n        \"waitingTickets\": \"<integer>\",\n        \"lastForwarded\": \"<string>\",\n        \"longestWaitingTicketTime\": \"<dateTime>\",\n        \"servedTickets\": \"<integer>\",\n        \"averageWaitingTime\": \"<integer>\",\n        \"averageServiceTime\": \"<integer>\"\n      }\n    },\n    \"longestServiceTimeStart\": \"<dateTime>\",\n    \"averageWaitingTime\": \"<integer>\",\n    \"averageServiceTime\": \"<integer>\",\n    \"lastUpdated\": \"<dateTime>\"\n  }\n]"}],"_postman_id":"9ba10a75-1b4e-4868-ac52-c5eaeb5a69be"}],"id":"2ffb7ce8-ed5e-4f01-86a9-fb83c3a6c200","description":"<p>Requests related to servicetype tasks</p>\n","_postman_id":"2ffb7ce8-ed5e-4f01-86a9-fb83c3a6c200"},{"name":"Statistics Interaction","item":[{"name":"Get daily tickets","id":"6b962b36-ac0a-4e17-b13c-cd15818db1f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"http://example.com/NQC/NQWebServices/api/offices/tickets/daily","description":"<p>Get a list of all the tickets for the day</p>\n","urlObject":{"path":["api","offices","tickets","daily"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"934e0887-53a9-4c96-885f-8c214434529e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"http://example.com/NQC/NQWebServices/api/offices/tickets/daily"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": \"<boolean>\",\n  \"result\": [\n    {\n      \"trackNumber\": \"<integer>\",\n      \"forwardTrackNumber\": \"<integer>\",\n      \"backTrackNumber\": \"<integer>\",\n      \"icu\": \"<string>\",\n      \"officeGuid\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"ticket\": \"<string>\",\n      \"serviceTypeNumber\": \"<integer>\",\n      \"cashierNumber\": \"<integer>\",\n      \"userNumber\": \"<long>\",\n      \"ticketDate\": \"<integer>\",\n      \"ticketTime\": \"<integer>\",\n      \"ticketDateTime\": \"<dateTime>\",\n      \"forwardingDateTime\": \"<dateTime>\",\n      \"forwardingTime\": \"<integer>\",\n      \"endDateTime\": \"<dateTime>\",\n      \"endTime\": \"<integer>\",\n      \"lostTicket\": \"<boolean>\",\n      \"waitingTime\": \"<integer>\",\n      \"serviceTime\": \"<integer>\",\n      \"queueType\": \"<integer>\",\n      \"customerId\": \"<string>\",\n      \"modificationDateTime\": \"<dateTime>\",\n      \"modificationDate\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"ticketText\": \"<string>\"\n    },\n    {\n      \"trackNumber\": \"<integer>\",\n      \"forwardTrackNumber\": \"<integer>\",\n      \"backTrackNumber\": \"<integer>\",\n      \"icu\": \"<string>\",\n      \"officeGuid\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"ticket\": \"<string>\",\n      \"serviceTypeNumber\": \"<integer>\",\n      \"cashierNumber\": \"<integer>\",\n      \"userNumber\": \"<long>\",\n      \"ticketDate\": \"<integer>\",\n      \"ticketTime\": \"<integer>\",\n      \"ticketDateTime\": \"<dateTime>\",\n      \"forwardingDateTime\": \"<dateTime>\",\n      \"forwardingTime\": \"<integer>\",\n      \"endDateTime\": \"<dateTime>\",\n      \"endTime\": \"<integer>\",\n      \"lostTicket\": \"<boolean>\",\n      \"waitingTime\": \"<integer>\",\n      \"serviceTime\": \"<integer>\",\n      \"queueType\": \"<integer>\",\n      \"customerId\": \"<string>\",\n      \"modificationDateTime\": \"<dateTime>\",\n      \"modificationDate\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"ticketText\": \"<string>\"\n    }\n  ]\n}"}],"_postman_id":"6b962b36-ac0a-4e17-b13c-cd15818db1f3"},{"name":"Get office tickets by date","event":[{"listen":"prerequest","script":{"exec":["var fromDate = new Date().toISOString();\r","var toDate = new Date();\r","toDate.setDate(toDate.getDate() + 1);\r","\r","pm.collectionVariables.set(\"fromDate\", fromDate);\r","pm.collectionVariables.set(\"toDate\", toDate.toISOString());"],"type":"text/javascript","packages":{},"id":"c12852c5-952f-47fa-9960-b8e237428a39"}}],"id":"719ea34d-cd1f-40e6-869a-24286232a14f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"fromDate\": \"\",\n  \"toDate\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/offices/tickets","description":"<p>Get a list of tickets for the specified date interval</p>\n","urlObject":{"path":["api","offices","tickets"],"host":["http://example.com/NQC/NQWebServices"],"query":[],"variable":[]}},"response":[{"id":"fbc9e9f5-8e06-4886-ae37-b8c187b01ed6","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"raw","raw":"{\n  \"fromDate\": \"<dateTime>\",\n  \"toDate\": \"<dateTime>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"http://example.com/NQC/NQWebServices/api/offices/tickets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": \"<boolean>\",\n  \"result\": [\n    {\n      \"trackNumber\": \"<integer>\",\n      \"forwardTrackNumber\": \"<integer>\",\n      \"backTrackNumber\": \"<integer>\",\n      \"icu\": \"<string>\",\n      \"officeGuid\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"ticket\": \"<string>\",\n      \"serviceTypeNumber\": \"<integer>\",\n      \"cashierNumber\": \"<integer>\",\n      \"userNumber\": \"<long>\",\n      \"ticketDate\": \"<integer>\",\n      \"ticketTime\": \"<integer>\",\n      \"ticketDateTime\": \"<dateTime>\",\n      \"forwardingDateTime\": \"<dateTime>\",\n      \"forwardingTime\": \"<integer>\",\n      \"endDateTime\": \"<dateTime>\",\n      \"endTime\": \"<integer>\",\n      \"lostTicket\": \"<boolean>\",\n      \"waitingTime\": \"<integer>\",\n      \"serviceTime\": \"<integer>\",\n      \"queueType\": \"<integer>\",\n      \"customerId\": \"<string>\",\n      \"modificationDateTime\": \"<dateTime>\",\n      \"modificationDate\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"ticketText\": \"<string>\"\n    },\n    {\n      \"trackNumber\": \"<integer>\",\n      \"forwardTrackNumber\": \"<integer>\",\n      \"backTrackNumber\": \"<integer>\",\n      \"icu\": \"<string>\",\n      \"officeGuid\": \"<string>\",\n      \"officeName\": \"<string>\",\n      \"ticket\": \"<string>\",\n      \"serviceTypeNumber\": \"<integer>\",\n      \"cashierNumber\": \"<integer>\",\n      \"userNumber\": \"<long>\",\n      \"ticketDate\": \"<integer>\",\n      \"ticketTime\": \"<integer>\",\n      \"ticketDateTime\": \"<dateTime>\",\n      \"forwardingDateTime\": \"<dateTime>\",\n      \"forwardingTime\": \"<integer>\",\n      \"endDateTime\": \"<dateTime>\",\n      \"endTime\": \"<integer>\",\n      \"lostTicket\": \"<boolean>\",\n      \"waitingTime\": \"<integer>\",\n      \"serviceTime\": \"<integer>\",\n      \"queueType\": \"<integer>\",\n      \"customerId\": \"<string>\",\n      \"modificationDateTime\": \"<dateTime>\",\n      \"modificationDate\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"ticketText\": \"<string>\"\n    }\n  ]\n}"}],"_postman_id":"719ea34d-cd1f-40e6-869a-24286232a14f"}],"id":"50fff1c0-bc30-4c20-98a0-88d40aff98b6","description":"<p>Requests related to servicetype tasks</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"a4184c36-ca19-4a9a-b1f3-b99a9a97049b"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"2c7b680b-ef0b-4adc-84eb-e876e9c58546"}}],"_postman_id":"50fff1c0-bc30-4c20-98a0-88d40aff98b6"}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"ffe28ac6-4b89-4ea2-944b-14a4d144e433"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"c81c742a-84fb-4614-bca4-6fd17f59ee03"}}],"variable":[{"key":"baseUrl","value":"http://example.com/NQC/NQWebServices"},{"key":"access_token","value":"","type":"string"},{"key":"grant_type","value":"password","type":"string"},{"key":"client_id","value":"099153c2625149bc8ecb3e85e03f0022*","type":"string"},{"key":"officeGuid","value":"","type":"string"},{"key":"username","value":"nemoq","type":"string"},{"key":"fromDate","value":"","type":"string"},{"key":"toDate","value":"","type":"string"},{"key":"fromTime","value":"","type":"string"}]}