{"id":4011,"date":"2019-02-18T17:15:45","date_gmt":"2019-02-18T15:15:45","guid":{"rendered":"https:\/\/www.systemcodegeeks.com\/?p=4011"},"modified":"2019-02-18T12:46:04","modified_gmt":"2019-02-18T10:46:04","slug":"postgresqls-psql-set-versus-set","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/","title":{"rendered":"PostgreSQL&#8217;s psql \\set versus SET"},"content":{"rendered":"\n<p>It is easy for someone who is new to <a href=\"https:\/\/www.postgresql.org\/\">PostgreSQL<\/a> and who uses PostgreSQL&#8217;s <a href=\"https:\/\/www.postgresql.org\/docs\/11\/app-psql.html\">terminal editor psql<\/a> to <a href=\"https:\/\/stackoverflow.com\/questions\/29593908\/difference-between-set-set-and-pset-in-psql\">confuse the commands<\/a> <code>\\set<\/code> and <code>SET<\/code>. This post contrasts these commands and provides a brief overview of other commands that include the word &#8220;set&#8221;.<\/p>\n\n\n\n<p>The easiest way to remember how to differentiate <code>\\set<\/code> from <code>SET<\/code> is to keep in mind that the &#8220;<a href=\"http:\/\/marxsoftware.blogspot.com\/2019\/02\/psql-backslash-commands-queries.html\">backslash commands<\/a>&#8221; such as <code>\\set<\/code> are &#8220;<a href=\"https:\/\/nixmash.com\/post\/common-postgresql-meta-commands\">meta commands<\/a>&#8221; for the <a href=\"https:\/\/alvinalexander.com\/blog\/post\/postgresql\/list-postgresql-slash-commands\">command-line psql tool<\/a> and do not mean anything to the PostgreSQL database itself. The <code>SET<\/code> command, which lacks a backslash, is a PostgreSQL database command that happens to be executed against the database from the <a href=\"http:\/\/phili.pe\/posts\/postgresql-on-the-command-line\/\">psql command-line client<\/a>.<\/p>\n\n\n\n<table class=\"wp-block-table\"><tbody><tr><th>Contrasting <code>\\set<\/code> and <code>SET<\/code><\/th><\/tr><tr><th>Command<\/th><td><code>\\set<\/code><\/td><td><code>SET<\/code> or <code>set<\/code><br>(or other case-insensitive variation<sup>1<\/sup>)<\/td><\/tr><tr><th>Context<\/th><td>psql terminal editor configuration meta command<br>(<a href=\"https:\/\/www.postgresql.org\/docs\/11\/app-psql.html#APP-PSQL-VARIABLES\">interactive client terminal configuration<\/a>)<\/td><td>PostgreSQL database configuration command<br>(<a href=\"https:\/\/www.postgresql.org\/docs\/11\/runtime-config.html\">server configuration<\/a>)<\/td><\/tr><tr><th>Ends with Semicolon?<\/th><td>No<\/td><td>Yes<\/td><\/tr><tr><th>Command Case Sensitive?<\/th><td>Yes<br>(must be exactly <code>\\set<\/code>)<\/td><td>No<\/td><\/tr><tr><th>Parameter\/Variable Case Sensitive?<\/th><td>Yes<sup>2<\/sup><\/td><td>No<\/td><\/tr><tr><th>How are Settings Displayed?<\/th><td><code>\\set<\/code><sup>3<\/sup><\/td><td><code>SHOW ALL;<\/code> or <code>show all;<\/code><sup>4<\/sup><\/td><\/tr><tr><td><code>\\echo :<em>variable_name<\/em><\/code><\/td><td><code>SHOW <em>variable_name<\/em>;<\/code><sup>5<\/sup><\/td><\/tr><tr><th>Examples<\/th><td><code>\\set AUTOCOMMIT on<\/code><\/td><td><code>SET search_path TO myschema, public;<\/code><\/td><\/tr><tr><th>Footnotes<\/th><td>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<ol>\n<li>I prefer to use all uppercase letters for <code>SET<\/code> to more clearly differentiate from <code>\/set<\/code>.<\/li>\n<li>Two variables with same letters but different cases are two distinct variables.<\/li>\n<li><code>\\set<\/code> displays all variables when no arguments are provided to it.<\/li>\n<li>Any case variation (even <code>sHoW aLl;<\/code>) works.<\/li>\n<li>Any case variation of command and\/or variable name also works.<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>There are two more <a href=\"https:\/\/www.postgresql.org\/docs\/11\/app-psql.html\">psql<\/a> meta commands that that &#8220;set&#8221; things and include the name &#8220;set&#8221;. The <code>\\pset<\/code> met command configures how <a href=\"https:\/\/www.postgresql.org\/docs\/11\/app-psql.html\">psql<\/a> presents &#8220;query result tables.&#8221; Like <code>\\set<\/code>, <code>\\pset<\/code> can be specified without argument to see all of the current presentation settings.<\/p>\n\n\n\n<p>Unlike the psql meta commands <code>\\set<\/code> and <code>\\pset<\/code>, the <code>\\gset<\/code> psql metacommand does affect the PostgreSQL server because <code>\\gset<\/code> submits the query buffer to the server and then stores the output returned from the server into specified psql variables. I discussed <code>\\gset<\/code> with a few additional details in the blog post &#8220;<a href=\"https:\/\/marxsoftware.blogspot.com\/2015\/08\/postgresql-psql-variable-from-query.html\">Setting PostgreSQL psql Variable Based Upon Query Result<\/a>.&#8221;<\/p>\n\n\n\n<p>Although <code>\\set<\/code> and <code>SET<\/code> can be used to set variables, the easiest way to distinguish between them is to consider that the backslash commands such as <code>\\set<\/code> are psql commands (and so <code>\\pset<\/code> sets variables in the psql client tool) and commands without the backslash such as <code>SET<\/code> are PostgreSQL commands sent to the server from psql or from any other client (but ultimately set variables on the server).<\/p>\n\n\n\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>\n<p>Published on System Code Geeks with permission by Dustin Marx, partner at our <a href=\"\/\/www.systemcodegeeks.com\/join-us\/scg\/\" target=\"_blank\" rel=\"noopener\">SCG program<\/a>. See the original article here: <a href=\"http:\/\/marxsoftware.blogspot.com\/2019\/02\/postgresql-differentiating-sets.html\" target=\"_blank\" rel=\"noopener\">PostgreSQL&#8217;s psql set versus SET<\/a><\/p>\n<p>Opinions expressed by System Code Geeks contributors are their own.<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>It is easy for someone who is new to PostgreSQL and who uses PostgreSQL&#8217;s terminal editor psql to confuse the commands \\set and SET. This post contrasts these commands and provides a brief overview of other commands that include the word &#8220;set&#8221;. The easiest way to remember how to differentiate \\set from SET is to &hellip;<\/p>\n","protected":false},"author":3990,"featured_media":198,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[34],"tags":[],"class_list":["post-4011","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-postgresql"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PostgreSQL&#039;s psql \\set versus SET - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Interested to learn about PostgreSQL&#039;s commands? Check our article explaining these commands and provides a brief overview of other &quot;set&quot; commands\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PostgreSQL&#039;s psql \\set versus SET - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Interested to learn about PostgreSQL&#039;s commands? Check our article explaining these commands and provides a brief overview of other &quot;set&quot; commands\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/\" \/>\n<meta property=\"og:site_name\" content=\"System Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/systemcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-18T15:15:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/postgresql-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Dustin Marx\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dustin Marx\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/\"},\"author\":{\"name\":\"Dustin Marx\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/09197bb4e9a891b2589891c42bf5ceb1\"},\"headline\":\"PostgreSQL&#8217;s psql \\\\set versus SET\",\"datePublished\":\"2019-02-18T15:15:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/\"},\"wordCount\":409,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/postgresql-logo.jpg\",\"articleSection\":[\"PostgreSQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/\",\"name\":\"PostgreSQL's psql \\\\set versus SET - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/postgresql-logo.jpg\",\"datePublished\":\"2019-02-18T15:15:45+00:00\",\"description\":\"Interested to learn about PostgreSQL's commands? Check our article explaining these commands and provides a brief overview of other \\\"set\\\" commands\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#primaryimage\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/postgresql-logo.jpg\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/postgresql-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.systemcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Databases\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/databases\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"PostgreSQL\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/databases\/postgresql\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"PostgreSQL&#8217;s psql \\\\set versus SET\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"name\":\"System Code Geeks\",\"description\":\"Operating System Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/systemcodegeeks\",\"https:\/\/x.com\/systemcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/09197bb4e9a891b2589891c42bf5ceb1\",\"name\":\"Dustin Marx\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a11cce21db49686299ad9afde297b5213759b39e79a54820195cf16b842639c0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a11cce21db49686299ad9afde297b5213759b39e79a54820195cf16b842639c0?s=96&d=mm&r=g\",\"caption\":\"Dustin Marx\"},\"sameAs\":[\"http:\/\/marxsoftware.blogspot.com\/\"],\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/dustin-marx\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PostgreSQL's psql \\set versus SET - System Code Geeks - 2026","description":"Interested to learn about PostgreSQL's commands? Check our article explaining these commands and provides a brief overview of other \"set\" commands","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/","og_locale":"en_US","og_type":"article","og_title":"PostgreSQL's psql \\set versus SET - System Code Geeks - 2026","og_description":"Interested to learn about PostgreSQL's commands? Check our article explaining these commands and provides a brief overview of other \"set\" commands","og_url":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_published_time":"2019-02-18T15:15:45+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/postgresql-logo.jpg","type":"image\/jpeg"}],"author":"Dustin Marx","twitter_card":"summary_large_image","twitter_creator":"@systemcodegeeks","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"Dustin Marx","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/"},"author":{"name":"Dustin Marx","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/09197bb4e9a891b2589891c42bf5ceb1"},"headline":"PostgreSQL&#8217;s psql \\set versus SET","datePublished":"2019-02-18T15:15:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/"},"wordCount":409,"commentCount":0,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/postgresql-logo.jpg","articleSection":["PostgreSQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/","url":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/","name":"PostgreSQL's psql \\set versus SET - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/postgresql-logo.jpg","datePublished":"2019-02-18T15:15:45+00:00","description":"Interested to learn about PostgreSQL's commands? Check our article explaining these commands and provides a brief overview of other \"set\" commands","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#primaryimage","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/postgresql-logo.jpg","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/postgresql-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemcodegeeks.com\/databases\/postgresql\/postgresqls-psql-set-versus-set\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Databases","item":"https:\/\/www.systemcodegeeks.com\/category\/databases\/"},{"@type":"ListItem","position":3,"name":"PostgreSQL","item":"https:\/\/www.systemcodegeeks.com\/category\/databases\/postgresql\/"},{"@type":"ListItem","position":4,"name":"PostgreSQL&#8217;s psql \\set versus SET"}]},{"@type":"WebSite","@id":"https:\/\/www.systemcodegeeks.com\/#website","url":"https:\/\/www.systemcodegeeks.com\/","name":"System Code Geeks","description":"Operating System Developers Resource Center","publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.systemcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.systemcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/systemcodegeeks","https:\/\/x.com\/systemcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/09197bb4e9a891b2589891c42bf5ceb1","name":"Dustin Marx","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a11cce21db49686299ad9afde297b5213759b39e79a54820195cf16b842639c0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a11cce21db49686299ad9afde297b5213759b39e79a54820195cf16b842639c0?s=96&d=mm&r=g","caption":"Dustin Marx"},"sameAs":["http:\/\/marxsoftware.blogspot.com\/"],"url":"https:\/\/www.systemcodegeeks.com\/author\/dustin-marx\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/4011","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/users\/3990"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=4011"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/4011\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media\/198"}],"wp:attachment":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media?parent=4011"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=4011"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=4011"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}