{"id":6437,"date":"2022-02-25T06:59:00","date_gmt":"2022-02-25T05:59:00","guid":{"rendered":"https:\/\/expert-only.com\/?p=6437"},"modified":"2022-12-05T15:06:30","modified_gmt":"2022-12-05T14:06:30","slug":"modification-date-of-sql-server-tables","status":"publish","type":"post","link":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/","title":{"rendered":"Modification date of SQL Server tables and views with a T-SQL query"},"content":{"rendered":"\n<h4 class=\"has-text-align-center wp-block-heading\"><strong><em>How to display the modification date of SQL Server tables?<\/em><\/strong><\/h4>\n\n\n\n<p>This SQL Server query example uses the system tables to detect and display the latest modification date of SQL Server tables, or views. It displays the creation date and the last update date. Moreover, this query only takes into account the tables because it reads the data from the system table <em>sys.tables<\/em>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-display-the-modification-date-of-a-sql-server-table\">How to display the modification date of a SQL Server table?<\/h2>\n\n\n\n<p>Indeed, this SQL script displays the list of tables created in the database. I.e., the &#8220;non-system&#8221; tables, as well as the creation date and the last update date. In addition, the query selects other data from the MS <a href=\"https:\/\/www.gartner.com\/en\/information-technology\/glossary\/rdbms-relational-database-management-system\" target=\"_blank\" rel=\"noreferrer noopener\">RDBMS<\/a> system table, like the type and the type description. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Audit the dates of changes in the structure of tables and views<\/h2>\n\n\n\n<p>Indeed, the date displayed is about the structural change of the table, not its content. This query is useful in SQL audits, to analyse the latest changes in creation and modification of objects within a database.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">SELECT\n  [name],\n  [type],\n  [type_desc],\n  [create_date],\n  [modify_date]\nFROM  sys.tables\nWHERE name like '%'\nORDER BY\n  modify_date DESC,\n  create_date DESC;\n<\/pre>\n\n\n\n<p>Finally, to display the same information for a view, use the same code and replace <strong>sys.tables<\/strong> with <strong>sys.views<\/strong>. System tables also allow you to <a href=\"https:\/\/expert-only.com\/en\/t-sql\/display-month-name-sql-server\/\">display the full month name with SQL Server with a T-SQL query<\/a>.<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-sql-and-it-tutorials wp-block-embed-sql-and-it-tutorials\"><div class=\"wp-block-embed__wrapper\">\nhttps:\/\/expert-only.com\/en\/t-sql\/display-month-name-sql-server\/\n<\/div><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">MS SQL useful scripts<\/h3>\n\n\n\n<p>More T-SQL tutorials and scripts to better manage objects and data. <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/expert-only.com\/en\/manage-sql-server-views-with-t-sql-code\/\">How to manage SQL Server views with T-SQL code?<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/expert-only.com\/en\/t-sql\/store-a-sql-server-column-in-a-variable\/\">Store a SQL column in a variable with delimiters<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/\">Modify a SQL Server column with a script<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/expert-only.com\/en\/t-sql\/calculate-difference-between-two-dates\/\">How to calculate the difference between two dates in SQL Server?<\/a><\/li>\n<\/ul>\n\n\n\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1649153663233\"><strong class=\"schema-faq-question\">What are SQL Server system tables?<\/strong> <p class=\"schema-faq-answer\">SQL Server system tables are tables used by the database management system and the SQL engine. In effect, these tables store the list of SQL Server objects and allow the database to function. It is strongly recommended that you do not edit these tables directly.<\/p> <\/div> <\/div>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>How to display the modification date of SQL Server tables? This SQL Server query example uses the system tables to detect and display the latest modification date of SQL Server tables, or views. It displays the creation date and <a class=\"mh-excerpt-more\" href=\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/\" title=\"Modification date of SQL Server tables and views with a T-SQL query\">&#8230;<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":6166,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[454],"tags":[],"class_list":{"0":"post-6437","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>Modification date of SQL Server tables - SQL Audit - T-SQL<\/title>\n<meta name=\"description\" content=\"How to display the last modification date of SQL Server tables? Use a query on the system tables to get the metadata.\" \/>\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\/modification-date-of-sql-server-tables\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Modification date of SQL Server tables and views with a T-SQL query\" \/>\n<meta property=\"og:description\" content=\"How to display the last modification date of SQL Server tables? Use a query on the system tables to get the metadata.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/\" \/>\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=\"2022-02-25T05:59:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-05T14:06:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/alarm-clock-DC1903CFC50_1920x1080.jpeg\" \/>\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\/modification-date-of-sql-server-tables\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/\"},\"author\":{\"name\":\"Expert-Only\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\"},\"headline\":\"Modification date of SQL Server tables and views with a T-SQL query\",\"datePublished\":\"2022-02-25T05:59:00+00:00\",\"dateModified\":\"2022-12-05T14:06:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/\"},\"wordCount\":330,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/alarm-clock-DC1903CFC50_1920x1080.jpeg\",\"articleSection\":[\"T-SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#respond\"]}]},{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/\",\"url\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/\",\"name\":\"Modification date of SQL Server tables - SQL Audit - T-SQL\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/alarm-clock-DC1903CFC50_1920x1080.jpeg\",\"datePublished\":\"2022-02-25T05:59:00+00:00\",\"dateModified\":\"2022-12-05T14:06:30+00:00\",\"description\":\"How to display the last modification date of SQL Server tables? Use a query on the system tables to get the metadata.\",\"breadcrumb\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#breadcrumb\"},\"mainEntity\":[{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#faq-question-1649153663233\"}],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#primaryimage\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/alarm-clock-DC1903CFC50_1920x1080.jpeg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/alarm-clock-DC1903CFC50_1920x1080.jpeg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"en\",\"item\":\"https:\/\/expert-only.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Modification date of SQL Server tables and views with a T-SQL query\"}]},{\"@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\"}},{\"@type\":\"Question\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#faq-question-1649153663233\",\"position\":1,\"url\":\"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#faq-question-1649153663233\",\"name\":\"What are SQL Server system tables?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"SQL Server system tables are tables used by the database management system and the SQL engine. In effect, these tables store the list of SQL Server objects and allow the database to function. It is strongly recommended that you do not edit these tables directly.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Modification date of SQL Server tables - SQL Audit - T-SQL","description":"How to display the last modification date of SQL Server tables? Use a query on the system tables to get the metadata.","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\/modification-date-of-sql-server-tables\/","og_locale":"en_US","og_type":"article","og_title":"Modification date of SQL Server tables and views with a T-SQL query","og_description":"How to display the last modification date of SQL Server tables? Use a query on the system tables to get the metadata.","og_url":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/","og_site_name":"SQL and IT Tutorials","article_publisher":"https:\/\/www.facebook.com\/ExpertOnlyCom\/","article_published_time":"2022-02-25T05:59:00+00:00","article_modified_time":"2022-12-05T14:06:30+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/alarm-clock-DC1903CFC50_1920x1080.jpeg","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\/modification-date-of-sql-server-tables\/#article","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/"},"author":{"name":"Expert-Only","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef"},"headline":"Modification date of SQL Server tables and views with a T-SQL query","datePublished":"2022-02-25T05:59:00+00:00","dateModified":"2022-12-05T14:06:30+00:00","mainEntityOfPage":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/"},"wordCount":330,"commentCount":0,"publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"image":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/alarm-clock-DC1903CFC50_1920x1080.jpeg","articleSection":["T-SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#respond"]}]},{"@type":["WebPage","FAQPage"],"@id":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/","url":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/","name":"Modification date of SQL Server tables - SQL Audit - T-SQL","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#primaryimage"},"image":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/alarm-clock-DC1903CFC50_1920x1080.jpeg","datePublished":"2022-02-25T05:59:00+00:00","dateModified":"2022-12-05T14:06:30+00:00","description":"How to display the last modification date of SQL Server tables? Use a query on the system tables to get the metadata.","breadcrumb":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#breadcrumb"},"mainEntity":[{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#faq-question-1649153663233"}],"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#primaryimage","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/alarm-clock-DC1903CFC50_1920x1080.jpeg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/alarm-clock-DC1903CFC50_1920x1080.jpeg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"en","item":"https:\/\/expert-only.com\/en\/"},{"@type":"ListItem","position":2,"name":"Modification date of SQL Server tables and views with a T-SQL query"}]},{"@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"}},{"@type":"Question","@id":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#faq-question-1649153663233","position":1,"url":"https:\/\/expert-only.com\/en\/t-sql\/modification-date-of-sql-server-tables\/#faq-question-1649153663233","name":"What are SQL Server system tables?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"SQL Server system tables are tables used by the database management system and the SQL engine. In effect, these tables store the list of SQL Server objects and allow the database to function. It is strongly recommended that you do not edit these tables directly.","inLanguage":"en-US"},"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/6437","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=6437"}],"version-history":[{"count":0,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/6437\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media\/6166"}],"wp:attachment":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media?parent=6437"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/categories?post=6437"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/tags?post=6437"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}