{"id":3253,"date":"2023-03-10T13:41:11","date_gmt":"2023-03-10T12:41:11","guid":{"rendered":"https:\/\/www.microdata.no\/?p=3253"},"modified":"2023-11-22T14:34:48","modified_gmt":"2023-11-22T13:34:48","slug":"new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression","status":"publish","type":"post","link":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/","title":{"rendered":"New analysis functionalities: Diff-in-diff and pooled panel regression"},"content":{"rendered":"\n<p><strong><em>It is now possible to perform diff-in-diff analyzes using the new regress-panel-diff command. In addition, it is now permitted to run pooled panel regression.<\/em><\/strong><\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Pooled panel regression<\/h2>\n\n\n\n<p>Linear panel regressions have until now been possible through the command <code>regress-panel<\/code>, using the alternatives fixed effects (<code>fe<\/code>), random effects (<code>re<\/code>) and between effects (<code>be<\/code>).<\/p>\n\n\n\n<p>We are now introducing the new option <code>pooled<\/code> which makes it possible to run pooled panel regressions. This is equivalent to running ordinary linear regression on panel datasets, where the time dimension is disregarded (considering all observations as separate units).<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-1.png\" alt=\"\" class=\"wp-image-3231\" width=\"602\" height=\"434\" srcset=\"https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-1.png 803w, https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-1-300x216.png 300w, https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-1-768x554.png 768w\" sizes=\"auto, (max-width: 602px) 100vw, 602px\" \/><figcaption class=\"wp-element-caption\">Random selection with panel extraction for the years 2018-2021. Dependent variable = annual salary, using marital status = married, place of residence = Oslo, and educational level equal to a master&#8217;s degree or higher as explanatory variables. Also years are included to control for time.<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Diff-in-diff<\/h2>\n\n\n\n<p>Diff-in-diff is a widely used form of analysis where the effect of a &#8220;treatment&#8221; is analyzed by comparing the change in the average value for a continuous\/rankable response variable before\/after the time of treatment. This is done for two groups: the treatment group and the control group. Finally, the difference between the two groups is calculated.<\/p>\n\n\n\n<p>The following preparatory steps must be followed before running a diff-in-diff analysis:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Create a panel dataset through the command <code>import-panel<\/code> or by converting from &#8220;wide&#8221; format to &#8220;long&#8221; format through the command <code>reshape-to-long<\/code><\/li>\n\n\n\n<li>Create a group variable with the value 1 for the treatment group and 0 for the control group<\/li>\n\n\n\n<li>Create a treatment variable that is set to 0 for all times before the treatment time, and 1 for all times starting from the treatment time<\/li>\n<\/ol>\n\n\n\n<p>After following steps 1. &#8211; 3. the command <code>regress-panel-diff<\/code> is used.<\/p>\n\n\n\n<p>The dependent variable is listed first. It must be continuous or rankable. <strong>The group and treatment variables need to be listed as numbers 2 and 3.<\/strong> This is a prerequisite for the analysis to be carried out correctly. Other independent variables are listed at the end (optional).<\/p>\n\n\n\n<p>The result from <code>regress-panel-diff<\/code> shows a standard panel regression table with model measures and coefficient values. The diff-in-diff value (so-called ATET value \u2013 <em>average treatment effect of the treated<\/em>) corresponds to the coefficient value of the interaction term for the two dummy variables which indicate respectively group and treatment.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-2-1024x538.png\" alt=\"\" class=\"wp-image-3233\" srcset=\"https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-2-1024x538.png 1024w, https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-2-300x158.png 300w, https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-2-768x403.png 768w, https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-2.png 1070w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Random selection with panel extraction for the years 2018-2021. Uses women as the treatment group and men as the control group. The treatment time is set to 2020. Diff-in-diff value (ATET) is equal to -1991.77 when controlling for marital status = married, place of residence = Oslo, and educational level equal to a master&#8217;s degree or higher. The ATET value is not significant in this case. <\/figcaption><\/figure>\n\n\n\n<p>The command <code>regress-panel-diff<\/code> is equivalent to running <code>regress-panel<\/code> with the option <code>pooled<\/code> where the group and treatment variables are included as interaction terms as well as separate dummies (use the characters ## to express this).<\/p>\n\n\n\n<p>Example:<br><code>regress-panel-diff salary group treatment married oslo high_edu<\/code><br>gives the same result as<br><code>regress-panel salary group##treatment married oslo high_edu, pooled<\/code><\/p>\n\n\n\n<p>The following options are available for <code>regress-panel-diff<\/code>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>level()<\/code>: Define a significance level other than the default value of 95 (5% significance level)<\/li>\n\n\n\n<li><code>robust<\/code>: Robust standard deviations<\/li>\n\n\n\n<li><code>cluster()<\/code>: Cluster estimation<\/li>\n<\/ul>\n\n\n\n<p>Feel free to use the commands <code>help regress-panel-diff<\/code> and <code>help regress-panel<\/code> inside the analysis tool for more information about these new functionalities.<\/p>\n\n\n\n<p><em>NB! Time (e.g. factor terms such as year) should not be included in regression-panel-diff models, as you risk obtaining 100% equal variance for the treatment variable compared with the dummy terms linked to the years from and including the time of treatment. The coefficient estimates for the variables\/terms involved will then be incorrect as a result.<\/em><\/p>\n\n\n\n<p><a href=\"https:\/\/microdata.no\/manual\/en\/eksempel\/Regresjonsanalyser\/Diff-in-diff-analyse\">Click here for a link to an analysis example where a simple diff-in-diff analysis is run.<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>It is now possible to perform diff-in-diff analyzes using the new regress-panel-diff command. In addition, it is now permitted to run pooled panel regression.<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[2],"tags":[],"class_list":["post-3253","post","type-post","status-publish","format-standard","hentry","category-news"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>New analysis functionalities: Diff-in-diff and pooled panel regression - microdata.no<\/title>\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.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"New analysis functionalities: Diff-in-diff and pooled panel regression - microdata.no\" \/>\n<meta property=\"og:description\" content=\"It is now possible to perform diff-in-diff analyzes using the new regress-panel-diff command. In addition, it is now permitted to run pooled panel regression.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/\" \/>\n<meta property=\"og:site_name\" content=\"microdata.no\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-10T12:41:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-22T13:34:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-1.png\" \/>\n<meta name=\"author\" content=\"Trond Pedersen\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Trond Pedersen\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/\"},\"author\":{\"name\":\"Trond Pedersen\",\"@id\":\"https:\\\/\\\/www.microdata.no\\\/#\\\/schema\\\/person\\\/76761ddfe0d06e3f08f5491a9faeab92\"},\"headline\":\"New analysis functionalities: Diff-in-diff and pooled panel regression\",\"datePublished\":\"2023-03-10T12:41:11+00:00\",\"dateModified\":\"2023-11-22T13:34:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/\"},\"wordCount\":585,\"image\":{\"@id\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.microdata.no\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/image-1.png\",\"articleSection\":[\"News\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/\",\"url\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/\",\"name\":\"New analysis functionalities: Diff-in-diff and pooled panel regression - microdata.no\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.microdata.no\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.microdata.no\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/image-1.png\",\"datePublished\":\"2023-03-10T12:41:11+00:00\",\"dateModified\":\"2023-11-22T13:34:48+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.microdata.no\\\/#\\\/schema\\\/person\\\/76761ddfe0d06e3f08f5491a9faeab92\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.microdata.no\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/image-1.png\",\"contentUrl\":\"https:\\\/\\\/www.microdata.no\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/image-1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Hjem\",\"item\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"New analysis functionalities: Diff-in-diff and pooled panel regression\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.microdata.no\\\/#website\",\"url\":\"https:\\\/\\\/www.microdata.no\\\/\",\"name\":\"microdata.no\",\"description\":\"Gj\u00f8r det enklere \u00e5 analysere registerdata\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.microdata.no\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.microdata.no\\\/#\\\/schema\\\/person\\\/76761ddfe0d06e3f08f5491a9faeab92\",\"name\":\"Trond Pedersen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b90e3f42c839e825d86949fc2f9a318f2a81da5f9e6b1431ff4d872333d4e717?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b90e3f42c839e825d86949fc2f9a318f2a81da5f9e6b1431ff4d872333d4e717?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b90e3f42c839e825d86949fc2f9a318f2a81da5f9e6b1431ff4d872333d4e717?s=96&d=mm&r=g\",\"caption\":\"Trond Pedersen\"},\"url\":\"https:\\\/\\\/www.microdata.no\\\/en\\\/author\\\/trond\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"New analysis functionalities: Diff-in-diff and pooled panel regression - microdata.no","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.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/","og_locale":"en_US","og_type":"article","og_title":"New analysis functionalities: Diff-in-diff and pooled panel regression - microdata.no","og_description":"It is now possible to perform diff-in-diff analyzes using the new regress-panel-diff command. In addition, it is now permitted to run pooled panel regression.","og_url":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/","og_site_name":"microdata.no","article_published_time":"2023-03-10T12:41:11+00:00","article_modified_time":"2023-11-22T13:34:48+00:00","og_image":[{"url":"https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-1.png","type":"","width":"","height":""}],"author":"Trond Pedersen","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Trond Pedersen","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/#article","isPartOf":{"@id":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/"},"author":{"name":"Trond Pedersen","@id":"https:\/\/www.microdata.no\/#\/schema\/person\/76761ddfe0d06e3f08f5491a9faeab92"},"headline":"New analysis functionalities: Diff-in-diff and pooled panel regression","datePublished":"2023-03-10T12:41:11+00:00","dateModified":"2023-11-22T13:34:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/"},"wordCount":585,"image":{"@id":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-1.png","articleSection":["News"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/","url":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/","name":"New analysis functionalities: Diff-in-diff and pooled panel regression - microdata.no","isPartOf":{"@id":"https:\/\/www.microdata.no\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/#primaryimage"},"image":{"@id":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-1.png","datePublished":"2023-03-10T12:41:11+00:00","dateModified":"2023-11-22T13:34:48+00:00","author":{"@id":"https:\/\/www.microdata.no\/#\/schema\/person\/76761ddfe0d06e3f08f5491a9faeab92"},"breadcrumb":{"@id":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/#primaryimage","url":"https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-1.png","contentUrl":"https:\/\/www.microdata.no\/wp-content\/uploads\/2023\/03\/image-1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.microdata.no\/en\/new-analysis-functionalities-diff-in-diff-and-pooled-panel-regression\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Hjem","item":"https:\/\/www.microdata.no\/en\/"},{"@type":"ListItem","position":2,"name":"New analysis functionalities: Diff-in-diff and pooled panel regression"}]},{"@type":"WebSite","@id":"https:\/\/www.microdata.no\/#website","url":"https:\/\/www.microdata.no\/","name":"microdata.no","description":"Gj\u00f8r det enklere \u00e5 analysere registerdata","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microdata.no\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.microdata.no\/#\/schema\/person\/76761ddfe0d06e3f08f5491a9faeab92","name":"Trond Pedersen","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b90e3f42c839e825d86949fc2f9a318f2a81da5f9e6b1431ff4d872333d4e717?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b90e3f42c839e825d86949fc2f9a318f2a81da5f9e6b1431ff4d872333d4e717?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b90e3f42c839e825d86949fc2f9a318f2a81da5f9e6b1431ff4d872333d4e717?s=96&d=mm&r=g","caption":"Trond Pedersen"},"url":"https:\/\/www.microdata.no\/en\/author\/trond\/"}]}},"taxonomy_info":{"category":[{"value":2,"label":"News"}]},"featured_image_src_large":false,"author_info":{"display_name":"Trond Pedersen","author_link":"https:\/\/www.microdata.no\/en\/author\/trond\/"},"comment_info":0,"category_info":[{"term_id":2,"name":"News","slug":"news","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":79,"filter":"raw","cat_ID":2,"category_count":79,"category_description":"","cat_name":"News","category_nicename":"news","category_parent":0}],"tag_info":false,"_links":{"self":[{"href":"https:\/\/www.microdata.no\/en\/wp-json\/wp\/v2\/posts\/3253","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microdata.no\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microdata.no\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microdata.no\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microdata.no\/en\/wp-json\/wp\/v2\/comments?post=3253"}],"version-history":[{"count":12,"href":"https:\/\/www.microdata.no\/en\/wp-json\/wp\/v2\/posts\/3253\/revisions"}],"predecessor-version":[{"id":3826,"href":"https:\/\/www.microdata.no\/en\/wp-json\/wp\/v2\/posts\/3253\/revisions\/3826"}],"wp:attachment":[{"href":"https:\/\/www.microdata.no\/en\/wp-json\/wp\/v2\/media?parent=3253"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.microdata.no\/en\/wp-json\/wp\/v2\/categories?post=3253"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.microdata.no\/en\/wp-json\/wp\/v2\/tags?post=3253"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}