{"id":29032,"date":"2023-10-09T06:38:00","date_gmt":"2023-10-09T04:38:00","guid":{"rendered":"https:\/\/expert-only.com\/?p=29032"},"modified":"2023-11-13T19:54:29","modified_gmt":"2023-11-13T18:54:29","slug":"table-valued-parameter-stored-procedure","status":"publish","type":"post","link":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/","title":{"rendered":"Use a table parameter in a Stored Procedure in SQL Server"},"content":{"rendered":"\n<p>In this T-SQL guide, we&#8217;ll explore how to use table-valued parameters in a SQL Server stored procedure. It  enables the passing of a table as a parameter and mot only its values like by using a select statement for example. Thus, this method is particularly useful for scenarios where you need to pass multiple rows of data to a stored procedure without having to pass too many variables.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-differences-between-output-parameters-and-table-valued-parameters\">Differences Between OUTPUT Parameters and Table-Valued Parameters<\/h4>\n\n\n\n<p>This previous tutorial discussed <a href=\"https:\/\/expert-only.com\/en\/t-sql\/return-values-sql-server-stored-procedure\/\">output parameters in SQL procedures<\/a>, which return single values or single line values if you extend the concept. Table-valued parameters, on the other hand, allow you to pass an entire set of data, like a table, to a stored procedure.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-set-up-the-customers-table\">Set Up the Customers Table<\/h4>\n\n\n\n<p>First, let&#8217;s create a sample table to store <em>Customers<\/em>:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"mssql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">-- Create the customers table with 3 sample columns\nCREATE TABLE [dbo].[CUSTOMERS] (\n   [CustomerNumber] int IDENTITY(1,1),\n   [Name]           nvarchar(20) UNIQUE,\n   [City]           nvarchar(20)\n)\nGO\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-1-create-a-type-for-the-table-valued-parameter\">Step 1: Create a Type for the Table-Valued Parameter<\/h2>\n\n\n\n<p>Before we create the stored procedure, we need to define a type that represents the structure of the table we want to pass as a parameter:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"mssql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">-- Create a type that represents our table structure\nCREATE TYPE CustomerTableType AS TABLE (\n    [Name] nvarchar(20),\n    [City] nvarchar(20)\n)\nGO\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-2-create-a-stored-procedure-with-a-table-valued-parameter-input\">Step 2: Create a Stored Procedure with a Table-Valued Parameter Input<\/h2>\n\n\n\n<p>Now, let&#8217;s create a stored procedure that accepts table-valued <a href=\"https:\/\/en.wikipedia.org\/wiki\/Parameter_(computer_programming)\">parameter<\/a>, using the table TYPE named <em>CustomerTableType<\/em> , defined in the paragraph above. In this particular use case, the stored procedure with a very explicit name performs these actions: <\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Receive the Table as an input table parameter (variable).<\/li>\n\n\n\n<li>Insert all of its content into the classical Customers table.<\/li>\n<\/ol>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"mssql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">-- Create a stored procedure that takes a table-valued parameter\nCREATE PROCEDURE dbo.uspAddMultipleCustomers\n    @Customers CustomerTableType READONLY\nAS\n    INSERT INTO dbo.CUSTOMERS ([Name], [City])\n    SELECT [Name], [City] FROM @Customers\nGO\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-3-use-the-sql-server-stored-procedure\">Step 3: Use the SQL Server Stored Procedure<\/h2>\n\n\n\n<p>To use this stored procedure, follow these 3 steps: <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>First declare a variable of our table type.<\/li>\n\n\n\n<li>Populate it with one or multiple lines of data here we insert 5 lines.<\/li>\n\n\n\n<li>And then pass it to the procedure.<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"mssql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">-- Declare a variable of our table type\nDECLARE @NewCustomers CustomerTableType\n\n-- Insert data into the table-valued variable\nINSERT INTO @NewCustomers ([Name], [City])\nVALUES \n    ('Alice', 'New York'),      -- North America\n    ('Jorge', 'Buenos Aires'),  -- South America\n    ('Chen', 'Beijing'),        -- Asia\n    ('Fatima', 'Cairo'),        -- Africa\n    ('Anya', 'Moscow');         -- Europe\n\n-- Execute the stored procedure with the table-valued parameter\nEXEC dbo.uspAddMultipleCustomers @NewCustomers\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-unlike-xml-table-typed-valued-parameters-allows-flexibility\">Unlike XML,  table typed valued parameters allows flexibility<\/h3>\n\n\n\n<p>To conclude, table-valued parameters offer a flexible way to pass complex data structures like tables to stored procedures in SQL Server. This method is highly efficient for bulk data operations and complex business logic implementations. <\/p>\n\n\n\n<p>You can extend this concept with even a larger scope of flexibly by <a href=\"https:\/\/expert-only.com\/en\/t-sql\/xml-data-in-sql-server\/\">passing XML tables to stored procedures<\/a>. Then the variable is completely independent of the data structure. <\/p>\n\n\n\n<p>For more examples about usage of stored procedures like modification, visit our <a href=\"https:\/\/expert-only.com\/en\/t-sql\/alter-sql-server-stored-procedure\/\">SQL Server stored procedure modification guide<\/a>. And also this similar tutorial, but this time using functions instead of procedures.<\/p>\n\n\n\n<figure class=\"wp-block-embed aligncenter is-type-wp-embed is-provider-sql-and-it-tutorials wp-block-embed-sql-and-it-tutorials\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"iePheVcKzp\"><a href=\"https:\/\/expert-only.com\/en\/t-sql\/sql-server-table-valued-functions\/\">How to use SQL Server Table-Valued Functions?<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;How to use SQL Server Table-Valued Functions?&#8221; &#8212; SQL and IT Tutorials\" src=\"https:\/\/expert-only.com\/en\/t-sql\/sql-server-table-valued-functions\/embed\/#?secret=hCH6k0JTfO#?secret=iePheVcKzp\" data-secret=\"iePheVcKzp\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>In this T-SQL guide, we&#8217;ll explore how to use table-valued parameters in a SQL Server stored procedure. It enables the passing of a table as a parameter and mot only its values like by using a select statement for <a class=\"mh-excerpt-more\" href=\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/\" title=\"Use a table parameter in a Stored Procedure in SQL Server\">&#8230;<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":10839,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[454],"tags":[],"class_list":{"0":"post-29032","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-t-sql"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.7 (Yoast SEO v26.2) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Use a table parameter in a Stored Procedure in SQL Server - T-SQL<\/title>\n<meta name=\"description\" content=\"Use a table valued parameter in a Stored Procedure, it includes steps to create a type, a procedures, and to execute it.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Use a table parameter in a Stored Procedure in SQL Server\" \/>\n<meta property=\"og:description\" content=\"Use a table valued parameter in a Stored Procedure, it includes steps to create a type, a procedures, and to execute it.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL and IT Tutorials\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-09T04:38:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-13T18:54:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Expert-Only\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@expert_only\" \/>\n<meta name=\"twitter:site\" content=\"@expert_only\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Expert-Only\" \/>\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:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/\"},\"author\":{\"name\":\"Expert-Only\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\"},\"headline\":\"Use a table parameter in a Stored Procedure in SQL Server\",\"datePublished\":\"2023-10-09T04:38:00+00:00\",\"dateModified\":\"2023-11-13T18:54:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/\"},\"wordCount\":399,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg\",\"articleSection\":[\"T-SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/\",\"url\":\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/\",\"name\":\"Use a table parameter in a Stored Procedure in SQL Server - T-SQL\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg\",\"datePublished\":\"2023-10-09T04:38:00+00:00\",\"dateModified\":\"2023-11-13T18:54:29+00:00\",\"description\":\"Use a table valued parameter in a Stored Procedure, it includes steps to create a type, a procedures, and to execute it.\",\"breadcrumb\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#primaryimage\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"en\",\"item\":\"https:\/\/expert-only.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Use a table parameter in a Stored Procedure in SQL Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/expert-only.com\/en\/#website\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"name\":\"SQL and IT Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/expert-only.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/expert-only.com\/en\/#organization\",\"name\":\"Expert-Only\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"width\":381,\"height\":174,\"caption\":\"Expert-Only\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\",\"https:\/\/x.com\/expert_only\",\"https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\",\"name\":\"Expert-Only\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"caption\":\"Expert-Only\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Use a table parameter in a Stored Procedure in SQL Server - T-SQL","description":"Use a table valued parameter in a Stored Procedure, it includes steps to create a type, a procedures, and to execute it.","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:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/","og_locale":"en_US","og_type":"article","og_title":"Use a table parameter in a Stored Procedure in SQL Server","og_description":"Use a table valued parameter in a Stored Procedure, it includes steps to create a type, a procedures, and to execute it.","og_url":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/","og_site_name":"SQL and IT Tutorials","article_publisher":"https:\/\/www.facebook.com\/ExpertOnlyCom\/","article_published_time":"2023-10-09T04:38:00+00:00","article_modified_time":"2023-11-13T18:54:29+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg","type":"image\/jpeg"}],"author":"Expert-Only","twitter_card":"summary_large_image","twitter_creator":"@expert_only","twitter_site":"@expert_only","twitter_misc":{"Written by":"Expert-Only","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#article","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/"},"author":{"name":"Expert-Only","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef"},"headline":"Use a table parameter in a Stored Procedure in SQL Server","datePublished":"2023-10-09T04:38:00+00:00","dateModified":"2023-11-13T18:54:29+00:00","mainEntityOfPage":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/"},"wordCount":399,"commentCount":0,"publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"image":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg","articleSection":["T-SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/","url":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/","name":"Use a table parameter in a Stored Procedure in SQL Server - T-SQL","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#primaryimage"},"image":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg","datePublished":"2023-10-09T04:38:00+00:00","dateModified":"2023-11-13T18:54:29+00:00","description":"Use a table valued parameter in a Stored Procedure, it includes steps to create a type, a procedures, and to execute it.","breadcrumb":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#primaryimage","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/expert-only.com\/en\/t-sql\/table-valued-parameter-stored-procedure\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"en","item":"https:\/\/expert-only.com\/en\/"},{"@type":"ListItem","position":2,"name":"Use a table parameter in a Stored Procedure in SQL Server"}]},{"@type":"WebSite","@id":"https:\/\/expert-only.com\/en\/#website","url":"https:\/\/expert-only.com\/en\/","name":"SQL and IT Tutorials","description":"","publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/expert-only.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/expert-only.com\/en\/#organization","name":"Expert-Only","url":"https:\/\/expert-only.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","width":381,"height":174,"caption":"Expert-Only"},"image":{"@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ExpertOnlyCom\/","https:\/\/x.com\/expert_only","https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA"]},{"@type":"Person","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef","name":"Expert-Only","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","caption":"Expert-Only"}}]}},"_links":{"self":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/29032","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/comments?post=29032"}],"version-history":[{"count":9,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/29032\/revisions"}],"predecessor-version":[{"id":29044,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/29032\/revisions\/29044"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media\/10839"}],"wp:attachment":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media?parent=29032"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/categories?post=29032"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/tags?post=29032"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}